我无法在显示特定类别帖子的页面中进行分页工作。分页显示,但它不会改变页面。一些帮助会很棒,谢谢!
这是我在 index.php 文件中的代码:
<?php
if (is_page('Blog') || is_category('Blogposts')) {
$post_per_page = '3';
$args=array('category_name' => 'Blogposts', 'posts_per_page' => $post_per_page);
?>
<?php
query_posts($args);
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title();?>"><?php the_title(); ?></a></h1>
<p><?php the_time('j.n.Y')?></<p>
<p><?php comments_number('No comments','1 comment','% comments'); ?></p>
<?php the_content(); ?>
</div>
<?php endwhile;
endif;
wp_pagenavi();
next_posts_link('« Previous Post' );
previous_posts_link('Next Post »' );
}
?>