$post_id = wp_insert_post(array(
'post_title' => 'Тест продукт',
'post_type' => 'product',
'post_staus' => 'publish',
'post_content' => 'Большое описание',
'post_excerpt' => 'Краткое описание',
'post_category' => array(0)
));
wp_set_object_terms( $post_id, 'Категория', 'product_cat' );