前提・実現したいこと
カスタム投稿記事が属する親タームのみ取得したいのですが、子タームも合わせて表示されてしまいます。
「'parent' => 0」をどこかに記載すれば良いかと考え他のですが、どの箇所にどのように記載したら良いかがわかりません。
どうぞ知恵をお貸しください。
下記コードで親子ターム名を表示するところまではできました。
<?php $author_id = get_the_author_meta('ID'); $store_id = get_field('user_store', 'user_'. $author_id); $terms = get_the_terms($store_id, 'genre'); foreach( $terms as $term ) { echo '<span class="'. $term->slug. '">'. $term->name. '</span>'; } ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/20 02:55
2020/08/20 02:57
2020/08/20 04:05
2020/08/20 04:07
2020/08/20 04:34