WordPressにて記事一覧ページのページネーションが作成したのですが
クリックしても同じ内容が出てしまいます。
1ページ6件表示ができるよう設定をしてるので
2ページ目では、残りの3件表示が出るように改善したいです。
お手数ですが、ご指導お願いいたします。
足りない情報等がありましたらご指摘ください。
php
1記事一覧ページ 2<section class="recruit_contents"> 3 <article> 4 <section class="entries" id="entry"> 5 <div class="flex" id="post"> 6 <?php 7 $args = array( 8 'post_type' => 'recruit_post', /* カスタム投稿名 */ 9 'posts_per_page' => 6, /* 表示する数 */ 10 ); ?> 11 <?php $my_query = new WP_Query( $args ); ?> 12 <?php if(have_posts()): while ( $my_query->have_posts() ) : $my_query->the_post(); ?> 13 <div class="item post_item"> 14 <a href="<?php the_permalink(); ?>#a02"><?php 15 if(has_post_thumbnail()): 16 the_post_thumbnail(); 17 else: 18 ?> 19 <img src="<?php echo get_template_directory_uri(); ?>/images/index/no-image.png" alt="" /> 20 <?php endif; ?></a> 21 <a href="<?php the_permalink(); ?>#a02"> 22 <p> 23 <span class="day"><?php the_time('Y.m d'); ?> UPDATE</span> 24 <?php the_title(); ?> 25 </p> 26 <p><?php echo get_the_excerpt(); ?></p> 27 </a> 28 </div> 29 <?php endwhile; ?> 30 <?php wp_reset_postdata(); ?> 31 <?php if( function_exists("the_pagination") ) the_pagination(); ?> 32 <?php else: ?> 33 <!--投稿が見つからない--> 34 <p>申し訳ございません。ただいま準備中です。</p> 35 <?php endif; ?> 36 <!--//投稿が見つからない--> 37 </div> 38 </section> 39 </article> 40</section>
php
1functions.php 2<?php 3function the_pagination() { 4 global $wp_query; 5 $bignum = 999999999; 6 if ( $wp_query->max_num_pages <= 1 ) 7 return; 8 echo '<nav class="pagination">'; 9 echo paginate_links( array( 10 'base' => str_replace( $bignum, '%#%', esc_url( get_pagenum_link($bignum) ) ), 11 'format' => '', 12 'current' => max( 1, get_query_var('paged') ), 13 'total' => $wp_query->max_num_pages, 14 'prev_text' => '←', 15 'next_text' => '→', 16 'type' => 'list', 17 'end_size' => 3, 18 'mid_size' => 3 19 ) ); 20 echo '</nav>'; 21 } 22?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/22 08:28