Skip to content

Instantly share code, notes, and snippets.

@wptraining
Created April 21, 2020 06:19
Show Gist options
  • Select an option

  • Save wptraining/9ac439a2d72be1bb5108e27c9b8a33c4 to your computer and use it in GitHub Desktop.

Select an option

Save wptraining/9ac439a2d72be1bb5108e27c9b8a33c4 to your computer and use it in GitHub Desktop.
Things you can do with wp-cli
# Deactivate a plugin
wp plugin deactivate hello-dolly
# Deactivate and uninstall a plugin
wp plugin deactivate hello-dolly --uninstall
# Uninstall a previously deactivated plugin
wp plugin uninstall hello-dolly
# Deactivate all plugins
wp plugin deactivate --all
# Force plugin to a previous version after bad update
wp plugin install hello-dolly --version=1.5 --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment