https://www.webopixel.net/wordpress/933.html
function categories_label() {
$cats = get_the_category();
foreach($cats as $cat){
echo '<a href="'.get_category_link($cat->term_id).'" ';
echo 'class="label label-'.esc_attr($cat->slug).'">';
echo esc_html($cat->name);
echo '</a>';
}
}
<?php categories_label() ?>
ありがたい引用
リンクなしのコードばかりで困っていた
リンクありで出力したいんだよ!