不确定您需要什么形式的术语,但这里有一段代码,它将首先获取所有帖子的术语,然后将它们打印为链接名称。
<?php
// Get Post Terms
$taxonomy_slug = "your-taxonomy";
$terms = get_the_terms( $post->ID, $taxonomy_slug );
if ( !empty( $terms ) ) {
foreach ( $terms as $term ) {
$out[] = \'<a href="\'. get_term_link( $term->slug, $taxonomy_slug ) .\'">\'. $term->name
. "</a>\\n";
}
echo implode(\', \', $out );
}
?>