遵循这种方法:
$product_information = array(
'post_author' => wp_get_current_user()->ID,
'post_title' => wp_strip_all_tags( $_POST['postTitle'] ),
'post_type' => 'product',
'post_status' => 'pending'
);
$product_id = wp_insert_post( $product_information );
wp_set_object_terms($product_id, array('Economy'), 'product_cat');
我设置了product_cat分类法,当创建产品时,我收到邮件:“您好!供应商(UserTest)已添加一个新产品等待审核。”
现在我尝试了类似的方法来将供应商名称插入 WP 后端面板的供应商列中,但我遗漏了一些东西。
我希望 post_author 在关联数组中添加键是解决方案,但我错了。
我尝试过使用:
wp_set_object_terms($product_id, wp_get_current_user()->ID , 'taxonomy-wcpv_product_vendors');
但什么也没发生。我缺少什么?
BIG阳