EDIT 注意到最初的问题是关于分类法,而不是术语。
我想把这个留在这里,以防将来对任何人都有帮助
这是我自己的解决方案。只需在你的函数中加入这个。php文件。。。
if( ! function_exists(\'get_term_by_term_taxonomy_id\') )
{
function get_term_by_term_taxonomy_id( $term_taxonomy_id = null )
{
global $wpdb;
$res = $wpdb->get_row(
$wpdb->prepare(
\'select term_id, taxonomy from {$wpdb->prefix}_term_taxonomy where term_taxonomy_id = %d\',
(int) $term_taxonomy_id
)
);
if( is_wp_error($res) ) return false;
return get_term_by(\'id\', $res->term_id, $res->taxonomy);
}
}