Skip to content

Instantly share code, notes, and snippets.

@petenelson
Last active June 19, 2024 18:39
Show Gist options
  • Save petenelson/26dfb32f4f74cd7a478670aa716f6ae5 to your computer and use it in GitHub Desktop.
Save petenelson/26dfb32f4f74cd7a478670aa716f6ae5 to your computer and use it in GitHub Desktop.
WP-CLI: Delete all terms or posts
wp term list taxonomy --field=term_id | xargs wp term delete taxonomy
wp post delete $(wp post list --post_type='page' --format=ids) --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment