您可以尝试这一点(基于未完成的PHP代码)
if ( is_single() ) {
$terms_of_post = get_the_term_list( get_the_ID() , \'my-custom-term\', \'\',\', \', \'\', \'\' );
$terms_of_post = strip_tags ( $terms_of_post );
single_post_title();
if( $terms_of_post ){
echo \' (\' . $terms_of_post . \')\';
}
}
要获取此格式,请执行以下操作:
Title (term1, term2, term3)