実現したいこと
Seamless Sticky Custom Post Typesを使用し固定表示を行い、一覧ページに固定表示した投稿とそれ以外の投稿の全件を取得し、1ページ12記事の表示のページネーションを正常に動作させたい。
発生している問題・分からないこと
固定表示した投稿とそれ以外の投稿それぞれのQueryを1つにまとめてページネーションに設定したが、'posts_per_page' => -1,を設定しているため1ページに全件表示され、ページネーションが正常に動作しない。
表示設定では1ページの最大投稿数は12に設定済み。
該当のソースコード
PHP
1 <div class ="gallery-wrapper"> 2 <?php 3 $term_object = get_queried_object(); // タームオブジェクトを取得 4 $term_slug = $term_object->slug; // タームスラッグ 5 $paged = get_query_var('paged') ? get_query_var('paged') : 1; 6 $sticky_args = [ 7 'posts_per_page' => -1, 8 'order' => 'DESC', 9 'post_status' => 'publish', 10 'post_type' => 'gallery', 11 'paged' => $paged, 12 'tax_query' => array( 13 array( 14 'taxonomy' => 'gallery-cat', 15 'field' => 'slug', 16 'terms' => $term_slug, 17 ), 18 ), 19 'post__in' => get_option('sticky_posts') 20 ]; 21 22 $args = [ 23 'posts_per_page' => -1, 24 'order' => 'DESC', 25 'post_status' => 'publish', 26 'post_type' => 'gallery', 27 'paged' => $paged, 28 'tax_query' => array( 29 array( 30 'taxonomy' => 'gallery-cat', 31 'field' => 'slug', 32 'terms' => $term_slug, 33 ), 34 ), 35 'post__not_in' => get_option('sticky_posts') 36 ]; 37 38 $sticky_query = new WP_Query($sticky_args); // 固定表示の記事を取得 39 $the_query = new WP_Query($args); // 固定表示以外の記事を取得 40 41 $new_query = new WP_Query(); 42 $new_query->posts = array_merge( $sticky_query->posts, $the_query->posts ); 43 $new_query->post_count = $sticky_query->post_count + $the_query->post_count; 44 45 ?> 46 47 <?php 48 if($new_query -> have_posts()): 49 while ( $new_query -> have_posts() ) : $new_query -> the_post(); 50 ?> 51 52 //ここにループ投稿 53 54 <?php endwhile; ?> 55 <?php endif; ?> 56 57</div> 58 59<div class ="page-nation"> 60 <?php 61 if(function_exists('wp_pagenavi')): 62 wp_pagenavi(array('query'=>$new_query)); 63 endif; 64 ?> 65</div>
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
'posts_per_page' => -1 を 'posts_per_page' => 12 に変更するとそれぞれの投稿が12投稿ずつ取得され1ページに24件の記事が表示される。
こちらの記事を参考にし、post_countを追加しましたが変化は見られませんでした。
https://ja.stackoverflow.com/questions/82485/%EF%BC%92%E3%81%A4%E3%81%AE%E3%82%AF%E3%82%A8%E3%83%AA%E3%82%92%E7%B5%90%E5%90%88%E3%81%95%E3%81%9B%E3%81%A6%E7%89%B9%E5%AE%9A%E3%81%AE%E3%82%AB%E3%83%86%E3%82%B4%E3%83%AA%E3%83%BC%E3%82%92%E6%8C%87%E5%AE%9A%E3%81%97%E3%81%A6%E9%96%A2%E9%80%A3%E8%A8%98%E4%BA%8B%E3%82%92%E8%A1%A8%E7%A4%BA%E3%81%97%E3%81%9F%E3%81%84%E3%81%A7%E3%81%99
補足
特になし
あなたの回答
tips
プレビュー