如何限制index.php中的帖子数量

时间:2011-06-06 11:06:21

标签: php wordpress

我有一个带循环的index.php

<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

// render post here

<?php endwhile; ?>

<?php endif; ?>

现在我想在页面上限制N的帖子数并创建 指向下一个/上一个N个帖子的链接。

非常感谢小代码片段。

更新

URL字符串怎么样?我想使功能类似于SO 其中查询由URL确定,例如

从最近的

获得接下来的20个问题

https://stackoverflow.com/questions?page=2&sort=active

1 个答案:

答案 0 :(得分:2)

你可以通过这种方式实现这一目标:

query_posts( 'posts_per_page=5' );

参考文献: http://codex.wordpress.org/Function_Reference/query_posts http://codex.wordpress.org/Class_Reference/WP_Query