以下のコードを使うことで出力可能!
「タクソノミー名」の部分を置き換えるだけです。
<?php
if ($terms = get_the_terms($post->ID, 'タクソノミー名')){
foreach ( $terms as $term ) if($term->parent) {
echo esc_html($term->name);
}
}
?>
以下のコードを使うことで出力可能!
「タクソノミー名」の部分を置き換えるだけです。
<?php
if ($terms = get_the_terms($post->ID, 'タクソノミー名')){
foreach ( $terms as $term ) if($term->parent) {
echo esc_html($term->name);
}
}
?>