我想知道你有没有term_links-genre
filters 这可能会修改您的get_the_term_list()
输出
您的代码示例一般应按预期工作,但您可能希望使用get_the_terms()
功能可以更好地根据自己的喜好控制输出。
这是相应的Codex example:
/**
* Customized the term list
*
* @param int $pid
* @param string $tax
* @param string $seperator
* @return string $out
*/
function custom_the_term_list( $pid = 0, $tax = \'category\', $seperator = \',\' )
{
$out = \'\';
$terms = get_the_terms( $pid, $tax );
if ( $terms && ! is_wp_error( $terms ) ) :
$list = array();
foreach ( $terms as $term )
{
$list[] = $term->name;
}
$out = join( $seperator, $list );
endif;
return $out;
}
用法示例:
printf( \'<span class="metaorange">%s</span>\',
custom_the_term_list( get_the_id(), \'genre\', \',\' )
);