Last active
August 20, 2020 19:15
-
-
Save raazon/9ff5c6a4ebc02af061fafb621fba0ab3 to your computer and use it in GitHub Desktop.
WordPress quick install via WP-CLI and WP-CLI cheat sheet
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
# WordPress WP-CLI cheat sheet | |
UPCOMING MORE... |
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
Firstly Config WP-CLI for your own environment: https://make.wordpress.org/cli/handbook/references/config/ | |
# Download & Install WordPress - Quick Start | |
mkdr your_new_folder | |
cd your_new_folder | |
wp core download | |
wp config create --dbname=testing --dbuser=root --dbpass=securepswd | |
wp db create | |
wp core install --url=your_domain --title=Your_Blog_Title --admin_user=username --admin_password=password --admin_email=your_email.com | |
That's all for download and install WordPress via WP-CLI! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment