How to add product in woocommerce with php code
I want to add products with PHP code like below: $post_information = array( 'post_title' => 'new item shop', 'post_content' => 'this is new item shop', 'post_type' => 'post', 'post_status' => 'publish' ); $post_id = wp_insert_post($post_information); but this code optimize for WooCommerce such as post type and guid and metadata and… Can someone help? Answers: Thank … Read more