【发布时间】:2012-01-10 21:29:13
【问题描述】:
我有一个显示所有帖子的页面。我使用了以下代码。
$args = array( 'numberposts' => 0 );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endforeach; ?>
上面的代码显示了我页面上的所有帖子。
但现在我想在这个页面上进行分页,每页显示 3 篇博文。
我将如何做到这一点。请帮忙。
【问题讨论】:
标签: wordpress pagination