这里介绍的解决方案让我可以轻松创建"类别"对于wordpress帖子:
//Check if category already exists
$cat_ID = get_cat_ID( $category );
//If it doesn't exist create new category
if($cat_ID == 0) {
$cat_name = array('cat_name' => $category);
wp_insert_category($cat_name);
}
//Get ID of category again incase a new one has been created
$new_cat_ID = get_cat_ID($category);
// Create post object
$new_post = array(
'post_title' => $headline,
'post_content' => $body,
'post_excerpt' => $excerpt,
'post_date' => $date,
'post_date_gmt' => $date,
'post_status' => 'publish',
'post_author' => 1,
'post_category' => array($new_cat_ID)
);
// Insert the post into the database
wp_insert_post( $new_post );
然而,Woocommerce并不承认这些类别。 Woocommerce类别存储在其他地方。如何以编程方式为woocommerce创建类别以及将其分配给新帖子的正确方法是什么?
答案 0 :(得分:15)
Woocommerce类别是product_cat分类中的术语。因此,要创建类别,您可以使用wp_insert_term
:
wp_insert_term(
'New Category', // the term
'product_cat', // the taxonomy
array(
'description'=> 'Category description',
'slug' => 'new-category'
)
);
这会返回term_id
和term_taxonomy_id
,如下所示:array('term_id'=>12,'term_taxonomy_id'=>34))
然后,将新产品与类别相关联只是将类别term_id
与产品帖子相关联(产品是Woocommerce中的帖子)。首先,创建产品/帖子,然后使用wp_set_object_terms
:
wp_set_object_terms( $post_id, $term_id, 'product_cat' );
顺便说一句,woocommerce也提供了这些功能,这些功能可能更容易使用,但我遇到过wp cron作业中可用的woocommerce功能问题,所以这些应该足以让你继续。
答案 1 :(得分:5)
您可以加载产品:
$product = wc_get_product($id);
然后设置类别:
$product->set_category_ids([ 300, 400 ] );
最后你应该保存,因为处理属性的操作使用prop setter方法,它存储数组中的更改以便以后保存到DB:
$product->save();
有关详细信息,请参阅API文档:https://docs.woocommerce.com/wc-apidocs/class-WC_Product.html
最好使用WC提供的功能来实现向后兼容。