我有一个表单,让人们决定他们产品的子类别,表单通过用户帖子的方式提交
Im trying to add the parent category to it as well
现在我测试了几种添加$term
但每次它只是被替换而不是添加add_action(\'transition_post_status\', \'new_product_add\', 10, 3);
function new_product_add($new_status, $old_status, $post) {
if(
$old_status != \'publish\'
&& $new_status == \'pending\'
&& !empty($post->ID)
&& in_array( $post->post_type,
array( \'product\')
)
) {
$term = get_term_by(\'name\', \'parent_category\', \'product_cat\');
wp_set_object_terms($post->ID, $term->term_id, \'product_cat\');
}
}