根据上的法典wp_set_object_terms()
通过传入slug而不是实际的术语名称来设置:
wp_set_object_terms( $object_id, $terms, $taxonomy, $append );
$terms
(数组/整型/字符串)(必需)
The slug or id of the term (如类别或标记ID)将替换此分类法中所有现有的相关术语。要清除或删除对象中的所有术语,请传递空字符串或NULL。整数被解释为标记ID。
这可能适用于您(不确定WP缓动阀是否脱落#
或者不是这样,这个鼻涕虫只是一个猜测)。
wp_set_object_terms( $product_id, \'test-model-#\', \'pa_model\' , false);