我正在使用带有代码的页面模板来显示所有博客帖子:
<?php /* Template Name: Blog */ ?>
<?php get_header(); ?>
<div id="main">
<?php
// ACF Page number variable
$numposts = get_field(\'number_of_posts_per_page\');
$args = array( \'numberposts\' => $numposts );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post);
?>
<div class="blogpost clearfix">
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<span class="postdetails">
<?php the_time (\'j F, Y\'); ?> <span class="bullet">•</span> Posted by: <?php the_author(\', \'); ?> in: <?php the_category(\', \'); ?><?php the_tags( \' <span class="bullet">•</span>  Tags: \', \', \', \'<br />\' ); ?>
</span>
<?php the_content(); ?>
</div>
<?php endforeach; ?>
<?php wp_pagenavi(); ?>
</div>
<?php get_footer(); ?>
我的问题是我无法进行任何分页。上面我安装了pagenavi,但没有显示任何内容。我已经在我的自定义字段(显示5,共6篇帖子)和WP设置中将帖子限制设置为5。
有人能解释一下吗?谢谢