WordPress カスタム投稿タイプのカテゴリー取得表示

Filed under: wordpress — kdcs @ 20年7月10日 金曜日

カスタム投稿タイプで複数のカテゴリーを使用する場合のカテゴリー名取得と表示
※ループの中に記述する

<?php
  if($terms = get_the_terms($post->ID, 'staffblog_category')) {
     foreach ( $terms as $term ) {
         echo esc_html($term->name);
        }
}
?>

サイト内検索

カテゴリー

最近の投稿

« |WordPress カスタム投稿タイプのカテゴリー取得表示| »
↑上に戻る