タームのスラッグ
1 2 3 4 |
<?php $terms = get_the_terms($post->ID,'カスタムタクソノミー'); foreach( $terms as $term ) echo ''.$term->slug.''; }?> |
ターム名
1 2 3 4 |
<?php $terms = get_the_terms($post->ID,'カスタムタクソノミー'); foreach( $terms as $term ) echo ''.$term->name.''; }?> |
コメント