get_the_terms

スポンサーリンク
WordPress

[WordPress]現在の記事がタームに紐づいていればリンク付きで表示

singe-投稿タイプスラッグ名.php <?php if(get_categories('taxonomy=タクソノミー名')): ?> <?php $terms = get_the_terms($post->ID,&...
WordPress

[WordPress]カスタム投稿のタームスラッグとターム名を取得

タームのスラッグ <?php $terms = get_the_terms($post->ID,'カスタムタクソノミー'); foreach( $terms as $term ) echo ''.$t...
WordPress

[WordPress]カスタム投稿で現在の記事のターム名を出力する

現在の記事のターム名 <?php $term = array_shift(get_the_terms($post->ID, 'カスタムタクソノミー')); echo esc_html($term->name); ?>
WordPress

[WordPress]リンク付きでタクソノミーリストを出力

get_term_linkでタクソノミーリスト出力 <?php $terms = get_the_terms($post->ID,'タクソノミー'); foreach( $terms as $term ) { echo ...
スポンサーリンク