创建一个 Drupal 视图,其中包含按月份投票最多的节点列表
我正在使用 Drupal 6 Views 模块来请求使用五星级模块评级的顶级节点。但是,我似乎不知道如何创建一个视图来请求每个月投票最高的节点并将它们显示在列表上。
我想要的结果是这样的列表:
- 2011 年 1 月:投票最多的节点标题 到该节点的链接
- 2010 年 12 月:投票最多的节点标题 到该节点的链接
- 2010 年 11 月:投票最多的节点标题 到该节点的链接
- ...
我什至不确定这是否可以使用视图?
I'm using the Drupal 6 Views module to request for top nodes rated using the fivestar module. However, I can't seem to find out how I can create a view to request for the top voted node for each month and display them on a list.
What I'd like as a result is a list like this:
- January 2011: Most voted node title an link to that node
- December 2010: Most voted node title an link to that node
- November 2010: Most voted node title an link to that node
- ...
I'm not even sure this is possible using Views?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过投票关系设置您的观点。
(更多信息请点击这里 http://www.lullabot.com/videos/building -views- Fivestar-and-votingapi)
确保按投票结果降序排序。
根据上面的示例,只需添加“节点标题”字段并选中“将此字段链接到其节点”即可。
其次,您需要根据日期值对列表进行分组。
这应该可以解决问题。
Set up your view with the voting relationship.
(more info here http://www.lullabot.com/videos/building-views-fivestar-and-votingapi)
Make sure you sort by vote result descending.
According to your example above, just add the Node Title field and checkmark "link this field to its node".
Secondly, you need to group your listing based on a date value.
That should do the trick.