我有一个带循环的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个问题答案 0 :(得分:2)
你可以通过这种方式实现这一目标:
query_posts( 'posts_per_page=5' );
参考文献: http://codex.wordpress.org/Function_Reference/query_posts http://codex.wordpress.org/Class_Reference/WP_Query