(可能更好用。)get_the_terms
).
$terms = wp_get_object_terms( $pid, \'custom_category\', array(\'fields\'=>\'ids\'));
获取术语ID的数组(将始终是数组,即使它是一个一个的数组):
$ids = wp_list_pluck( $terms, \'term_id\' );
如果你只需要一个id。。。然后“弹出”最后一个id:
$id = array_pop($ids);
另请参见上的PHP文档
array_pop
here