尝试使用WP-PageNavi为我的wordpress主题添加分页。 在我的localhost中,它工作得很好...... 但是,在线它无法显示Prev Next按钮...... 我的循环是:
<?php query_posts( array( 'cat' => 19, 'showposts' => 6, 'paged' => get_query_var('paged') ) ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="xxxx">
<h4> <?php the_date('l, j \d\e F, Y');?> </h4>
<a href="<?php the_permalink() ?>"><h1><?php the_title(); ?></h1></a>
<p><?php the_excerpt(); ?></p>
</div>
<?php endwhile?>
<?php else: ?>
<?php endif; ?>
<div class="yyyyyy">
<?php wp_pagenavi( ); ?>
</div>
知道怎么解决这个问题吗? 花了一整天努力让它发挥作用......: - (