如何在面板/视图中显示第一个/第二个....第n个最新节点?

发布于 2025-01-07 20:08:07 字数 99 浏览 0 评论 0原文

在现有(单个)节点的面板上下文中?我在那里放什么来仅检索一个节点内容,从最新的查询,例如:第一个最新的,或第二个最新的或第三个等等。

另外如何使用视图模块来做到这一点?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗酒趁年少 2025-01-14 20:08:07

如果您只想在页面的不同区域显示最新的第一、第二和第三节点内容,您要做的就是在新视图中创建 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文