Skip to content

Instantly share code, notes, and snippets.

View michelmany's full-sized avatar

Michel Moraes michelmany

View GitHub Profile
@michelmany
michelmany / delete-products.txt
Last active June 22, 2024 18:39
Delete all WooCommerce Products
wp post list --field=ID --post_type=product --posts_per_page=2000 | xargs wp post delete --force
Delete from trash:
wp post list --field=ID --post_type=product --post_status=trash --posts_per_page=2000 | xargs wp post delete --force