0

我已经在表达式引擎中完成了动态条目。现在我遇到了问题,因为我想在第一页上显示前四个条目,在另一页上显示其他条目,那么我该怎么做呢?

4

2 回答 2

1

如果它不是您所追求的分页,并且您特别希望一页有 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}
于 2013-11-01T03:33:47.890 回答
0

试试喜欢

{exp:comment:entries channel="channelname" sort="asc" limit="4" paginate="bottom"}
    {paginate}
        {if previous_page}
            <a href="{auto_path}">Previous Page</a> &nbsp;
        {/if}
        {if next_page}
            <a href="{auto_path}">Next Page</a>
        {/if}
    {/paginate}
{/exp:comment:entries}
于 2013-10-31T12:45:22.857 回答