而您可以在中指定分隔符等the_terms()
参数,它假定您实际上需要链接。
您可以使用过滤器丢弃不需要的HTML:
add_filter(\'the_terms\', \'no_terms_links\', 10, 2);
function no_terms_links($term_list, $taxonomy) {
if (\'type\' == $taxonomy)
return wp_filter_nohtml_kses($term_list);
return $term_list;
}
或者只是使用更深的
get_the_terms()
函数并遍历其返回来构建您自己的标记。