foreach内にカスタム投稿カテゴリを出力する
<?php
$terms = get_the_terms($post->ID, '●●●');
if ( $terms ) {
echo $terms[0]->name;
}
?>
https://illustswitch.com/wp/terms-post-belongs-to/
WordPress、HTML、CSS、JSに関する備忘録
foreach内にカスタム投稿カテゴリを出力する
<?php
$terms = get_the_terms($post->ID, '●●●');
if ( $terms ) {
echo $terms[0]->name;
}
?>
https://illustswitch.com/wp/terms-post-belongs-to/