タームの数字が7なら
<p>
<?php
$terms = get_the_terms( $post ->ID, 'works_cate' );
foreach( $terms as $term ) {
if($term->parent == "7"){
echo $term->name;
}
}
?>
</p>
web メモ
タームの数字が7なら
<p>
<?php
$terms = get_the_terms( $post ->ID, 'works_cate' );
foreach( $terms as $term ) {
if($term->parent == "7"){
echo $term->name;
}
}
?>
</p>