gpt4 book ai didi

jekyll - Jekyll 中的范围帖子

转载 作者:行者123 更新时间:2023-12-02 01:22:12 26 4
gpt4 key购买 nike

为了只显示 4 个帖子,我使用了以下代码段:

{% for post in site.categories.mycategory limit:4 %}
{{ post.content }}
{% endfor %}

现在,在第二个容器中,我需要显示从 5 到 8 的帖子,然后是从 9 到 12 的帖子,依此类推。是否有筛选范围的帖子?谢谢。

最佳答案

您可以使用 offset跳过第一个元素:

{% for post in site.categories.mycategory limit:4 offset:4 %}
{{ post.content }}
{% endfor %}

同时考虑 pagination .

关于jekyll - Jekyll 中的范围帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39362152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com