您可以使用过滤器和strip_tags()
, 正如你所建议的。使用post标记的示例,因为这是我可用的分类法:
function my_remove_links( $term_links ) {
return array_map(\'strip_tags\', $term_links);
}
add_filter(\'term_links-post_tag\', \'my_remove_links\');
真的,我只是
get_the_terms()
并自己制作输出:
function the_simple_terms() {
global $post;
$terms = get_the_terms($post->ID,\'post_tag\',\'\',\', \',\'\');
$terms = array_map(\'_simple_cb\', $terms);
return implode(\', \', $terms);
}
function _simple_cb($t) {
return $t->name;
}
echo the_simple_terms();