wp_pagenavi在第2页无效。
[确定] url / wordpress / 2013/06 /
[NG。发生404错误] url / wordpress / 2013/06 / page / 2 /
我尝试了一些插件,但没有任何改变。
这是我的代码。
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'post_category' => 3,
'paged' => $paged,
'posts_per_page' => 9,
......
);
$myquery = new WP_Query($args);
<?php if ($myquery->have_posts()) : ?>
<?php while ($myquery->have_posts()): $myquery->the_post(); ?>
/* Do stuff */
<?php endwhile; ?>
wp_pagenavi(array('query' => $myquery));
<?php endif; ?>
默认查询在其他页面中工作正常(loop.php)。
尝试插件
有人知道吗?