Created
April 21, 2020 06:19
-
-
Save wptraining/9ac439a2d72be1bb5108e27c9b8a33c4 to your computer and use it in GitHub Desktop.
Things you can do with wp-cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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