而命令
DELETE ALL CATEGORIES IS - wp term list product_cat --field=term_id | xargs wp term delete product_cat
以及
DELETE ALL THE PRODUCTS IS - wp post list —field=ID —post_type=product | xargs wp post delete —force
从特定类别中选择产品并将其删除的命令是什么?非常感谢帮助。
y1aodyip1#
使用类别说明符--category="your category"。例如wp post delete $(wp wc product list --user=1 --format=ids --category=64) --force。
--category="your category"
wp post delete $(wp wc product list --user=1 --format=ids --category=64) --force
1条答案
按热度按时间y1aodyip1#
使用类别说明符
--category="your category"
。例如
wp post delete $(wp wc product list --user=1 --format=ids --category=64) --force
。