由于有多个分类法,您将需要遍历该帖子类型的所有指定分类法。get_object_taxonomies
返回post类型分类的数组的函数。
global $post;
foreach ( get_object_taxonomies( $post ) as $tax_name ){
$taxonomy = get_taxonomy( $tax_name );
$label = $taxonomy->labels->name;
the_terms( $post->ID, $tax_name, $label . \': \', \', \' );
}