Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mishterk/164302b0e95c2117f629d5e09d8c884d to your computer and use it in GitHub Desktop.
Save mishterk/164302b0e95c2117f629d5e09d8c884d to your computer and use it in GitHub Desktop.
Simplify WordPress updates by bundling them by using WP CLI and running them all from the one 'command'. For more info see https://philkurth.com.au/tips/simplify-wordpress-updates-using-these-sequential-wp-cli-commands/
alias wp-update-all="wp plugin update --all && wp language plugin update --all && wp theme update --all && wp language theme update --all && wp core update --force && wp language core update"
wp plugin update --all && wp language plugin update --all && wp theme update --all && wp language theme update --all && wp core update --force && wp language core update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment