WordPressのプラグインWP-PageNaviについて質問です。
WP-PageNaviを使用して記事一覧ページ(single.php)にページネーションを表示させているのですが、2ページ目以降のの内容が1ページ目の内容と同じになってしまいます。
php
1<ul> 2 <?php 3$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; 4$args = array( 5'posts_per_page' => 16, 6'cat' => 2, 7'paged' => $paged, 8'post_type' => 'post', 9); 10$the_query = new WP_Query($args); ?> 11 12<?php if($the_query->have_posts()): ?> 13<?php while($the_query->have_posts()) : $the_query->the_post(); ?> 14 15<div class="news-p animation" data-animate="fadeIn"> 16 <a href="<?php the_permalink() ?>"> 17<div> 18 19<?php the_post_thumbnail('news'); ?> 20</div> 21 </a> 22 <p><?php the_title(); ?></p> 23 <small><?php the_time('Y.n.j'); ?></small> 24</div> 25 26<?php endwhile; endif; ?> 27<?php if(function_exists('wp_pagenavi')){ 28wp_pagenavi(array('query'=>$the_query)); 29} 30?> 31<?php wp_reset_query(); ?> 32 </ul> 33
どうしたら2ページ目以降が正常に表示されるようになるでしょうか?
回答よろしくお願いします。
あなたの回答
tips
プレビュー