カスタム投稿タイプで複数のカテゴリーを使用する場合のカテゴリー名取得と表示
※ループの中に記述する
<?php
if($terms = get_the_terms($post->ID, 'staffblog_category')) {
foreach ( $terms as $term ) {
echo esc_html($term->name);
}
}
?>
カスタム投稿タイプで複数のカテゴリーを使用する場合のカテゴリー名取得と表示
※ループの中に記述する
<?php
if($terms = get_the_terms($post->ID, 'staffblog_category')) {
foreach ( $terms as $term ) {
echo esc_html($term->name);
}
}
?>