#1.親タームをクリック→親タームと属する子タームを全件表示
#2.子タームをクリック→子タームの記事一覧を表示
上記のようにしたいのですが、
親タームをクリックすると、たまに子タームの記事が表示されたり(親タームの記事をいくつか追加すると戻る)、
全件表示している際にページャーの次をクリックすると子タームの空の記事一覧が表示されてしまいます。
どうかご教示いただけますと幸いです。
php
1<?php 2$term = wp_get_object_terms($post->ID, 'tax'); 3$term_name = $term[0]->name; //ターム名 4$term_slug = $term[0]->slug; //タームのスラッグ 5$paged = get_query_var('paged') ? get_query_var('paged') : 1 ; 6 7$args = array( 8 'post_type' => 'custompost', 9 'taxonomy' => 'tax', 10 'term' => $term_slug, 11 'paged' => $paged, 12 'posts_per_page' => 12 13); 14 15$the_query = new WP_Query( $args ); 16if ( $the_query->have_posts() ) : 17 while ( $the_query->have_posts() ) : 18 $the_query->the_post(); 19?> 20 21<div class="mod-list__box"> 22 <a href="<?php the_permalink(); ?>" class="mod-list__link"> 23 <div class="mod-list__img"> 24 <img src="/img/list/img01.png" alt=""> 25 </div> 26 <p class="mod-list__txt"><?php the_title(); ?></p> 27 <?php 28 $terms = get_the_terms($post->ID, 'tax'); 29 if ( $terms ) { 30 foreach ( $terms as $term ) { 31 echo '<span class="mod-list__cat">'.$term->name.'</span>'; 32 } 33 } 34 ?> 35 </a> 36</div> 37<!-- [/mod-list__box] --> 38 39<?php endwhile; 40endif; 41?>
あなたの回答
tips
プレビュー