小ターム表示 記事側

タームの数字が7なら

<p>
<?php
$terms = get_the_terms( $post ->ID, 'works_cate' );

foreach( $terms as $term ) {
  if($term->parent == "7"){
    echo $term->name;
  }
}
?>
</p>