Reputation: 799
How can I bulk insert Woocommerce Product Tags?
Upvotes: 1
Views: 2491
Reputation: 799
I have tested different methods and found that this works the best for my case:
wp_set_object_terms($productID, array('product_tag1','product_tag2','product_tag3'), 'product_tag');
Upvotes: 4