我试图弄清楚如何使用wp_set_object_terms()
wordpress函数设置多个值。
我尝试使用数组:
$array = array(102, 59);
wp_set_object_terms ($property_id, $array, 'property-city');
但它只设置了最后一个值" 59"。
答案 0 :(得分:2)
如果您只想添加这些术语,可能需要将append参数设置为true。
wp_set_object_terms( $object_id, $terms, $taxonomy, $append );
请参阅:https://codex.wordpress.org/Function_Reference/wp_set_object_terms