我正在构建一个表单供用户使用wp_insert_post和update_post_Meta通过我网站的前端创建产品.
原文链接:https://www.f2er.com/php/134469.html尝试设置产品类别和标签时出现问题.在这方面,Woocommerce似乎没有使用标准的wordpress分类法.有人对此有经验吗?似乎Woocommerce在某些地方使用product_tags.有没有像wordpress一样创建它们的功能?
以下是我正在做的事情的片段.谢谢!
$post = array( 'ID' => '','post_content' => $_POST['post_content'],'post_title' => $_POST['post_title'],'post_status' => 'draft','post_type' => 'product','post_author' => $user_id,); $newListing = wp_insert_post($post,$wp_error); //SET Meta update_post_Meta($newListing,'_stock_status','instock',true); update_post_Meta($newListing,'_visibility','visible','_price',$_POST['_regular_price'],true); //SET CATEGORIES - **NOT WORKING** wp_set_post_categories($newListing,$categories); //SET THE TAGS **NOT WORKING** wp_set_post_tags($newListing,$tags,true);