2016年07月21日
カスタム分類名(タクソノミー)の表示タグ
カスタム投稿タイプの場合のカテゴリー名を表示する方法はこれだ。
<?php
if ($terms = get_the_terms($post->ID, ‘カスタム分類名’)) {
foreach ( $terms as $term ) {
echo esc_html($term->name);
}
}
?>
以上!!
カスタム投稿タイプの場合のカテゴリー名を表示する方法はこれだ。
<?php
if ($terms = get_the_terms($post->ID, ‘カスタム分類名’)) {
foreach ( $terms as $term ) {
echo esc_html($term->name);
}
}
?>
以上!!