Skip to content

Instantly share code, notes, and snippets.

@brandoncamenisch
Last active April 5, 2019 19:13
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 brandoncamenisch/50beae84d7b3cbedeb49 to your computer and use it in GitHub Desktop.
Save brandoncamenisch/50beae84d7b3cbedeb49 to your computer and use it in GitHub Desktop.
Delete certain post type from network of sites using wp-cli
wp site list --field=url | while read SITE ; do wp post delete $( wp post list --post_type='vistage_chair' --ids --url=$SITE ) --url=$SITE; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment