カスタム投稿のカテゴリーはよく出力するけど、毎回調べている気がするので記録。
カスタム投稿名:news
カスタムタクソノミー(カテゴリー):news-cat
カスタムタクソノミー(タグ):news-tag の時
aタグとして出力されます。
<?php echo get_the_term_list($post->ID, 'news-cat'); ?>
リスト形式など任意のタグに変更したい場合は以下の方法で。
いずれも news-cat を news-tag にするとタグが表示されます
<?php $terms = get_the_terms($post->ID, 'news-cat'); if ($terms) { echo "<ul>"; foreach ($terms as $term) { $term_link = get_term_link($term); echo '<li><a href="' . esc_url($term_link) . '">' . $term->name . '</a></li>'; } "</ul>"; } ?>
wp_list_categoriesを使って表示
wp_list_categoriesを使用しても出力できます。リスト形式
<ul> <?php $catlist = wp_list_categories(array( 'taxonomy' => 'diary-cat', // タクソノミーの指定 'title_li' => '', )); echo $catlist; ?> </ul>