前提・実現したいこと
Wordpressのカスタム投稿の子カテゴリーは表示させて、孫以下は表示させないようにしたいです。
現在下記のコードにしていますが、どう対処すべきかわからず、お知恵をお借りしたいです。
該当のソースコード
<?php $term_id = '27'; // タームの指定 $taxonomy_name = 'cate_clinic'; $termchildren = get_term_children( $term_id, $taxonomy_name ); foreach ( $termchildren as $child ) :?> <?php $term = get_term_by( 'id', $child, $taxonomy_name );?> <li><a href="<?php echo get_term_link( $child, $taxonomy_name );?>"><?php echo $term->name;?></a></li> <?php endforeach; ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。