Last active
January 28, 2020 21:53
-
-
Save NorthTexasCreative/ff663c84d4eb11d3d3772a272d72de0b to your computer and use it in GitHub Desktop.
WP CLI Commands
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
| ** Install WP CLI on Windows | |
| curl -L -O https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && echo @ECHO OFF > wp.bat && echo php "%~dp0wp-cli.phar" %* >> wp.bat | |
| **Install WP CLI on Server | |
| curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
| ** Test Install | |
| php wp-cli.phar --info | |
| wp --info | |
| Add User | |
| wp user create username email --role=administrator --user_pass=change-this | |
| Search/Replace Database | |
| wp search-replace <old site> <new site> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment