遵循这种方法:$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');但什么也没发生。我缺少什么?
1 回答
BIG阳
TA贡献1859条经验 获得超6个赞
我用过:
wp_set_object_terms( $product_id, WC_Product_Vendors_Utils::get_logged_in_vendor(), WC_PRODUCT_VENDORS_TAXONOMY );
- 1 回答
- 0 关注
- 79 浏览
添加回答
举报
0/150
提交
取消