Last active
July 8, 2017 03:06
-
-
Save zsim0n/d8aa8e084dc1454e4d5f to your computer and use it in GitHub Desktop.
create-wordpress-site-with-wp-cli
This file contains 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
mkdir wordpress | |
cd wordpress | |
wp core download | |
wp core config --dbname=<database name> --dbuser=<database username> --dbpass=<database password> | |
wp db create | |
wp core install --url=<url> --title=<title> --admin_user=<admin_user> --admin_password=<admin_pw> --admin_email=<admin_email> | |
wp uninstall akismet | |
wp uninstall hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment