【发布时间】:2014-11-30 23:38:04
【问题描述】:
是否可以在 woocommerce 帖子中添加类别?
我正在按如下方式创建我的产品:
// creates woocommerce product
$product = array(
'post_title' => $name,
'post_content' => '',
'post_status' => 'publish',
'post_author' => $current_user->ID,
'post_type' =>'product'
);
// Insert the post into the database
$product_ID = wp_insert_post($product);
我有一个名为“树”的类别,我必须将上述产品添加到其中。 我尝试了以下但没有成功。有没有什么特别的方法 添加一个类别?
wp_set_object_terms($productID, array('Tree'), 'product_cat');
【问题讨论】:
标签: php wordpress woocommerce