为了账号安全,请及时绑定邮箱和手机立即绑定

从前端设置 WooCommerce 产品供应商

从前端设置 WooCommerce 产品供应商

PHP
郎朗坤 2023-09-15 21:39:18
遵循这种方法:$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 );



查看完整回答
反对 回复 2023-09-15
  • 1 回答
  • 0 关注
  • 79 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信