列出WordPress中的第2页和第2页

时间:2013-03-31 02:36:13

标签: php wordpress

有没有在WordPress中显示一个<ul>中的2个首页和另一个<ul>中的最后两页?

在我的页面上,我有两个不同的导航栏列表:

<ul>
   <li>One</li>
   <li>Two</li>
</ul>

<ul>
   <li>Three</li>
   <li>Four</li>
</ul>

将数据wp_list_pages()限制为2,第一个应显示ASC,最后一个显示DESC - 类似于......

1 个答案:

答案 0 :(得分:2)

试试这个

<ul>
<?php wp_list_pages('sort_order=ASC&number=2'); ?>
</ul>

<ul>
<?php wp_list_pages('sort_order=DESC&number=2'); ?>
</ul>
  

number(integer)设置要显示的页数。这导致了   要定义的SQL LIMIT值。默认为无限制。

参考http://codex.wordpress.org/Function_Reference/wp_list_pages