Skip to content

Instantly share code, notes, and snippets.

@cfxd
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cfxd/60a5bff3c63712035239 to your computer and use it in GitHub Desktop.
Save cfxd/60a5bff3c63712035239 to your computer and use it in GitHub Desktop.
# Install wordpress
wp core download && wp core config --dbname=wordpress_test_db --dbuser=root && wp core install --url=http://localhost/wp-cli/ --title=Wordpress --admin_user=admin --admin_password=admin --admin_email=youremail@domain.com
# Install and activate Plugins
wp plugin install wordpress-importer --activate && wp plugin install contact-form-7 --activate
# Generate Posts
curl http://loripsum.wpwolf.com | wp post generate --post_content --count=10
# Activate a theme
wp theme activate twentytwelve
# re-generate all thumbnails, without confirmation
wp media regenerate --yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment