Woocommerce categories are terms in the product_cat taxonomy. So, to create a category, you can use wp_insert_term:
wp_insert_term(
'New Category',
'product_cat',
array(
'description'=> 'Category description',
'slug' => 'new-category'
)
);
This returns term_idand term_taxonomy_id, for example:array('term_id'=>12,'term_taxonomy_id'=>34))
term_id post ( Woocommerce). /, wp_set_object_terms:
wp_set_object_terms( $post_id, $term_id, 'product_cat' );
Btw, woocommerce , , woocommerce, wp cron jobs, , .