1

After the following script is run

wp wc product create --name='b' --categories=32 --user=user

Output is printed:

Success: Created product 1370.

But no categories are shown in wp-admin/WooCommerce->Products page for the newly added product.

I have followed Find Product Category IDs to get category id. Tried to use [32], ['32'] instead of 32. The result is the same. Category is not shown in wordpress admin. How to fix it?

rok
  • 9,403
  • 17
  • 70
  • 126

1 Answers1

0

After opening issue on woocommerce github page and authorss reaction.

The solution is

wp wc product create --name='Product Name' --categories='[ { "id" : 21 } ]' --user=admin
rok
  • 9,403
  • 17
  • 70
  • 126