<ul class="li_menu_ul"> <?php $terms = get_terms('schedule_year'); foreach ($terms as $term ) { //カレントカテのために追加 $term_id = $term->term_id;//現在のタームID $taxonomy_name = get_query_var('taxonomy');//現在のタクソノミー名 $current_calss = '';//カレント空に if(is_tax($taxonomy_name , $term_id))://なら $current_calss = ' current-cat'; endif;//おわり $des_list .= '<li class="des-'. $term-> slug . $current_calss .'">'; $des_list .= '<a href="' . get_term_link( $term ) . '" class="f_button">'; $des_list .= $term->name . '</a></li>'; } echo $des_list; ?> </ul> <!--2個めは $des_list2 --> <ul class="li_menu_ul"> <?php $terms = get_terms('schedule_cat'); foreach ($terms as $term ) { //カレントカテのために追加 $term_id = $term->term_id;//現在のタームID $taxonomy_name = get_query_var('taxonomy');//現在のタクソノミー名 $current_calss = '';//カレント空に if(is_tax($taxonomy_name , $term_id))://なら $current_calss = ' current-cat'; endif;//おわり $des_list2 .= '<li class="des-'. $term-> slug . $current_calss .'">'; $des_list2 .= '<a href="' . get_term_link( $term ) . '" class="f_button">'; $des_list2 .= $term->name . '</a></li>'; } echo $des_list2; ?> </ul>
参考
https://wpdocs.osdn.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/is_tax