我创建了一个自定义页面,它将仅显示来自特定类别的帖子,并且我还设置wordpress
为仅显示 4 个帖子。现在的问题是它WP-PageNavi
不能正常工作。这是代码。
<div class="sixteen columns latest_post">
<?php query_posts('cat=3', 'posts_per_page=-1=-'); if(have_posts()) : while(have_posts()) :the_post(); ?>
<div class="sixteen columns alpha omega outer_box">
<div class="inner_box articles">
<!--TITLE OF THE POST -->
<h3 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<ul class="data">
<li><?php the_author_posts_link() ?> /</li>
<li><?php the_category(', ') ?> /</li>
<li><?php the_time('F jS, Y') ?> /</li>
<li><?php comments_number() ?></li>
</ul>
<hr>
<!--THUMBNAIL -->
<div class="align_thumbnail_right">
<?php if ( has_post_thumbnail()) the_post_thumbnail('home-thumb'); ?>
</div>
<div class="content">
<!--TEXT -->
<?php the_excerpt(); ?>
<a href="<?php echo get_permalink(); ?>"><span>Read More</span></a>
</div>
</div>
</div>
<?php endwhile; endif; wp_reset_query();?>
<!--PAGINATION -->
<div class="pagination">
<?php wp_pagenavi(); ?>
</div>
我在索引页面上应用了插件,它似乎工作正常。但是当我在自定义页面上尝试它时它不起作用。