wordpress 列表页 设置 分页数量失效 如何解决?元素模板为您解答:
<?php
$limit = get_option('posts_per_page');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('cat=-3&showposts=' . $limit=9 . '&paged=' . $paged);
$wp_query->is_archive = true; $wp_query->is_home = false;
?>
<?php while (have_posts()) : the_post(); ?>
<div>
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
//分页插件调用代码开始
<div>
<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
<div><?php next_posts_link(' 上一页 »') ?></div>
<div><?php previous_posts_link('« 下一页 ') ?></div>
<?php } ?>
</div>