您不应再使用传统的函数参数格式。相反,作为documentation 说,使用get_terms( $args )
格式:
自4.5.0以来,应通过$args
阵列:
$terms = get_terms( array(
\'taxonomy\' => \'post_tag\',
\'hide_empty\' => false,
) );
至于只获取分配给当前职位或特定职位的术语,您可以使用
object_ids
parameter 具有
get_terms()
, 或者简单地使用
get_the_terms()
.
例如:
$post_id = get_the_ID();
$countries = get_terms( array(
\'taxonomy\' => \'country\',
\'object_ids\' => $post_id, // set the object_ids
) );
// Or just use get_the_terms():
$countries = get_the_terms( $post_id, \'country\' );