カスタム投稿(CPTUI)のターム(カテゴリ)の表示と背景色をターム毎に変更できる記述

カスタム投稿(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>

参考ページURL
https://wp.clean-navi.com/%E3%83%96%E3%83%AD%E3%82%B0%E3%82%84%E3%81%8A%E7%9F%A5%E3%82%89%E3%81%9B%E3%81%AE%E3%82%AB%E3%83%86%E3%82%B4%E3%83%AA%E8%A1%A8%E7%A4%BA%E3%82%92%E8%89%B2%E5%88%86%E3%81%91-2143.html

ポチッ☆とクリックお願いします!
↓ ↓ ↓

  • にほんブログ村 IT技術ブログ ホームページ・サイト制作支援へ

コメントは受け付けていません。

サブコンテンツ

TOP