Skip to content

Instantly share code, notes, and snippets.

@raazon
Last active August 20, 2020 19:15
Show Gist options
  • Save raazon/9ff5c6a4ebc02af061fafb621fba0ab3 to your computer and use it in GitHub Desktop.
Save raazon/9ff5c6a4ebc02af061fafb621fba0ab3 to your computer and use it in GitHub Desktop.
WordPress quick install via WP-CLI and WP-CLI cheat sheet
# WordPress WP-CLI cheat sheet
UPCOMING MORE...
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