アーカイブページにリンクなしのカテゴリリストを出力する
<?php
if ($terms = get_the_terms($post->ID, 'cat_news')) {
foreach ( $terms as $term ) {
echo "<b>" .esc_html($term->name)."</b>"
;}
}
?>
WordPress、HTML、CSS、JSに関する備忘録
アーカイブページにリンクなしのカテゴリリストを出力する
<?php
if ($terms = get_the_terms($post->ID, 'cat_news')) {
foreach ( $terms as $term ) {
echo "<b>" .esc_html($term->name)."</b>"
;}
}
?>