php - How to add a product category in woocommerce wordpress -


i hope can me problem asap.

ok building costum script users publish new product, have working , inserting (event photo) cant seem find anywhere code should used update post category, not normal category because has taxonomy of "product_cat" (woocommerce product category).

any ideas?

non of following work: ($term_id term_id relates "product_cat" of product)

     wp_set_post_terms($post_id, array($term_id), "product_cat");     wp_set_post_terms($post_id, (int)$term_id, "product_cat");     update_post_meta($post_id,'product_cat',$term_id);     

i have tried others dont seem @ all, functions create new category id...

well test wp_set_post_terms($post_id, array($term_id), "product_cat"); , worked me.


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -