Skip to content

Instantly share code, notes, and snippets.

@michelmany
Last active June 22, 2024 18:39
Show Gist options
  • Save michelmany/578e1a03b4b07b35a915ae5c7538fdad to your computer and use it in GitHub Desktop.
Save michelmany/578e1a03b4b07b35a915ae5c7538fdad to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment