wordpressプラグイン、pagenaviを使ってページネーションを追加したいのですが、反映されません。
<?php /* Template Name: コラム */ get_header(); ?> <div class="fv"> <?php $args = array( 'post_type' => 'first_kiji', //カスタム投稿タイプ名 'posts_per_page' => 1, // 表示件数 'paged' => $paged, ); ?> <?php $myposts = new WP_Query($args); if($myposts->have_posts()): while($myposts->have_posts()): $myposts->the_post(); $c = get_post_custom(); ?> <div class="fv_wrapper"> <?php $pic = get_field('first_gazou'); $pic_url = $pic['url']; ?> <img src="<?php echo $pic_url; ?>" alt="山"> <div class="fv_text"> <?php the_title('<h2>','</h2>'); ?> <p class="fv_text01"><?php the_time('Y.m.d');?></p> <div class="fv_text02"><?php the_excerpt(); ?></div> <p><a href="<?php the_permalink(); ?>">[続きを読む]</a></p> </div> </div> <?php endwhile; endif;?> </div> <main> <div class="main-wrapper"> <div class="content"> <?php $args = array( 'post_type' => 'content_kiji', //カスタム投稿タイプ名 'posts_per_page' => 5, // 表示件数 'paged' => $paged, ); ?> <?php $myposts = new WP_Query($args); if($myposts->have_posts()): while($myposts->have_posts()): $myposts->the_post(); $c = get_post_custom(); ?> <div class="card"> <?php $pic = get_field('content_gazou'); $pic_url = $pic['url']; ?> <img src="<?php echo $pic_url; ?>" alt="山" class="c_img"> <div class="c_text"> <?php the_title('<h3>','</h3>'); ?> <div class="c_text01"><?php the_time('Y.m.d');?></div> <div class="c_text02"><?php the_content(); ?></div> </div> </div> <?php endwhile; endif;?> </div> <!-- aside --> <aside> <ul> <li class="recently01">sample</li> <li class="recently02">sample</li> <li class="recently03">sample</li> <li class="recently04">sample</li> </ul> </aside> </div> </main> <?php if (function_exists('wp_pagenavi')){wp_pagenavi();} ?> <?php get_footer(); ?>
最後の部分に
<?php if (function_exists('wp_pagenavi')){wp_pagenavi();} ?>
を記述すればページネーションが出るとテキストにあったのですが
左下の1/11のような表示しか出てきません。
プラグインの設定は
という設定をしました。
どうすれば反映がされるようになるのでしょうか。
わかりづらい質問ですみません!
よろしくお願いいたします。
あなたの回答
tips
プレビュー