Drupal 中的视图和标签(分类)以及选项卡
这是 Drupal 6 安装,我的内容类型包含一些分类词汇表,所有术语均采用标签格式。
我想创建视图来根据术语显示节点,并且我希望将这些视图显示在选项卡中。
例如四个节点:
节点1:termA,termB 节点 2:termA、termC 节点 3:termB termC 节点 4:termB、termD
我想要一个选项卡显示,其中有四个选项卡,分别名为 TermA、TermB、TermC、TermD。
单击每个选项卡时,它将显示与该术语关联的所有节点。
例如:
对于选项卡 TermA,将显示节点 1、节点 2、 对于选项卡 TermD,将仅显示节点 4。
关于如何做到这一点有什么建议吗?
谢谢
It is a Drupal 6 installation and I have a content type that has a few taxonomy vocabularies and all terms are in Tags format.
I would like to create Views to show nodes based on terms, and I would like to have those Views displayed in tabs.
For example, four nodes:
node 1: termA, termB
node 2: termA, termC
node 3: termB termC
node 4: termB, termD
I would like to have a tabs display that have four tabs, named TermA, TermB, TermC, TermD respectively.
When clicking each tab, it will show all nodes that are associated with this term.
eg:
For tab TermA, will display node1, node 2,
For tab TermD, will display node 4 only.
Any suggestion on how to do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您查看过分类菜单吗?这可能是比使用视图更简单的解决方案。
Have you looked at Taxonomy Menu. It might be an easier solution than doing this using views.