如何在面板/视图中显示第一个/第二个....第n个最新节点?
在现有(单个)节点的面板上下文中?我在那里放什么来仅检索一个节点内容,从最新的查询,例如:第一个最新的,或第二个最新的或第三个等等。
另外如何使用视图模块来做到这一点?
in the panel context from existing (single)nodes? what do i put in there to retrieve only one node content, query from the latest, eg: the first latest, or the second latest or the third and so on.
Also how to do so with the views module?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想在页面的不同区域显示最新的第一、第二和第三节点内容,您要做的就是在新视图中创建 3 个不同的显示 -
第一个最新节点内容块
通过发布数据 DESC 并在基本设置 > 下的块中进行排序每页项目>将限制更改为 1 并将偏移量保留在 0
第二个最新节点内容块
通过发布数据 DESC 并在基本设置 > 下的块中进行排序每页项目>将限制更改为 1 并将偏移量保留为 1
第三个最新节点内容块
通过发布数据 DESC 并在基本设置 > 下的块中进行排序每页项目>将限制更改为 1 并将偏移量保留为 2
这应该可以正常工作 - 可能不是最好的方法,但会给你你想要的 - 也不要忘记其余的过滤器,例如节点类型。 ETC
if you just want to show latest first, second and third node content in different areas of your page what you would do is create 3 different displays in a new view -
first latest node content block
order by post data DESC and in your block under Basic Settings > Items per page > change limit to 1 and leave offset at 0
second latest node content block
order by post data DESC and in your block under Basic Settings > Items per page > change limit to 1 and leave offset at 1
third latest node content block
order by post data DESC and in your block under Basic Settings > Items per page > change limit to 1 and leave offset at 2
this should work fine - might not be best way to go about it but will give you what you want - also don't forget the rest of your filters such as node type. etc