カスタム投稿(CPTUI)のターム(カテゴリ)の表示と背景色をターム毎に変更できる記述
<?php
$terms = get_the_terms( $post->ID, 'sekoujirei_category');
?>
<li id="post-<?php the_ID(); ?>">
<span class="infoDate"><?php echo esc_html( get_the_date() ); ?></span>
<span class="infoCate">
<?php if ( $terms ) {
foreach ($terms as $term) {
?>
<span class="<?php echo $term->slug; ?>">
<a href="<?php echo get_term_link($term->slug, 'sekoujirei_category') ?>"><?php echo $term->name; ?></a>
</span>
<?php
}
}
?>
</span>
関連記事はこちら!
スポンサーリンク






