Xhuljo
Xhuljo

Reputation: 799

Programmatically add Woocommerce product tags

How can I bulk insert Woocommerce Product Tags?

Upvotes: 1

Views: 2491

Answers (1)

Xhuljo
Xhuljo

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

Related Questions