<?php $terms = get_the_terms($post->ID,'タクソノミー'); foreach( $terms as $term ) { echo $term->term_id; // タームID echo $term->name; // 名前 echo $term->slug; // スラッグ echo $term->term_taxonomy_id; // タームタクソノミーID echo $term->taxonomy; // タクソノミー echo $term->description; // ディスクリプション echo $term->parent; // 親 echo $term->count; // カウント }?>