drupal 7视图模块问题

时间:2011-03-28 08:57:20

标签: view drupal-7

我创建了视图,简而言之它显示了最后5个新闻标题和图像 并将它们放在首页 但具体来说,我想只显示第一个节点的图像,其余只显示它们的标题,那么正确的程序是什么。 有没有这个模块的文档,所以我可以通过它的功能和属性来打印我需要的东西。

这是创建的视图的摘要查询,但我认为它对我需要的内容没用:

SELECT node.nid AS nid, node.title AS node_title, node.language AS node_language, 'node' AS field_data_field_img_node_entity_type FROM  {node} node LEFT JOIN {taxonomy_index} taxonomy_index ON node.nid = taxonomy_index.nid LEFT JOIN {taxonomy_term_data} taxonomy_term_data ON taxonomy_index.tid = taxonomy_term_data.tid WHERE (( (node.status = '1') AND (node.type IN ('news')) AND (taxonomy_term_data.name LIKE 'Lates News' ESCAPE '\\') )) LIMIT 5 OFFSET 0

1 个答案:

答案 0 :(得分:0)

这可以通过Views界面完全完成。更改显示以显示偏移量为1的4个新闻节点的标题。然后,添加一个附件显示,输出单个节点并将其设置为显示标题和图像。然后,将该显示附加到另一个显示之前。