-
-
Save Narga/ccc6c254540b9e98d0f0 to your computer and use it in GitHub Desktop.
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
# 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 [email protected] | |
# 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