我已经在表达式中完成了动态输入。现在我有问题,因为我想在第一页上显示前四个条目,在另一个页面上显示其他条目,那么我该怎么做呢?
答案 0 :(得分:1)
如果您不是pagination,那么具体希望在第一页上有一个页面为4,其余页面在另一页面上。
{exp:channel:entries channel="news" limit="4"}
<h2>{title}</h2>
{body}
{/exp:channel:entries}
然后在第二页上使用offset属性显示其余条目
{exp:channel:entries channel="news" offset="4"}
<h2>{title}</h2>
{body}
{/exp:channel:entries}
答案 1 :(得分:0)
尝试
{exp:comment:entries channel="channelname" sort="asc" limit="4" paginate="bottom"}
{paginate}
{if previous_page}
<a href="{auto_path}">Previous Page</a>
{/if}
{if next_page}
<a href="{auto_path}">Next Page</a>
{/if}
{/paginate}
{/exp:comment:entries}