Adding product author to product import .csv?
-
Is there a way to add a product’s author via the import .csv?
I have added code that allows me to do this via the wp dashboard, but I need a way to do this in bulk when adding multiple products via .csv.
//create author add_action('init', 'wpse_74054_add_author_woocommerce', 999 ); function wpse_74054_add_author_woocommerce() { add_post_type_support( 'product', 'author' ); }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Adding product author to product import .csv?’ is closed to new replies.