Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Last active October 29, 2021 20:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrobinsonc/b9857338c0c63a11e0409ae031db78c0 to your computer and use it in GitHub Desktop.
Save jrobinsonc/b9857338c0c63a11e0409ae031db78c0 to your computer and use it in GitHub Desktop.
Clean installation of WordPress using WP CLI
# Delete all comments
wp comment delete $(wp comment list --format=ids)
# Delete posts revisions
wp post delete --force $(wp post list --post_type='revision' --format=ids)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment