wordpress WP CLI命令从特定类别中删除产品?

t8e9dugd  于 2023-01-04  发布在  WordPress
关注(0)|答案(1)|浏览(176)

而命令

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

从特定类别中选择产品并将其删除的命令是什么?
非常感谢帮助。

y1aodyip

y1aodyip1#

使用类别说明符--category="your category"
例如wp post delete $(wp wc product list --user=1 --format=ids --category=64) --force

相关问题