Skip to content

Instantly share code, notes, and snippets.

@mattburesh
Last active September 20, 2019 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattburesh/7babd5001566fcba60321f1f15f3af72 to your computer and use it in GitHub Desktop.
Save mattburesh/7babd5001566fcba60321f1f15f3af72 to your computer and use it in GitHub Desktop.

Useful WP CLI Commands

Update Multisite Permalinks

wp site list --field=url | xargs -n1 -I site wp rewrite structure '/news/%postname%/' --url=site

Delete all posts from a site

Delete all posts with the post type of post from a site, skip the trash can

wp post delete $(wp post list --post_type=post --url=SITE_URL --format=ids) --url=SITE_URL --force

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment