foreach内にカスタム投稿カテゴリを出力する

<?php
$terms = get_the_terms($post->ID, '●●●');
if ( $terms ) {
echo $terms[0]->name;
}
?>

https://illustswitch.com/wp/terms-post-belongs-to/