Last active
December 29, 2016 01:06
-
-
Save BenBroide/1553cf0bfcaec5048c4d21fb815a4a52 to your computer and use it in GitHub Desktop.
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
| curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
| chmod +x wp-cli.phar | |
| sudo mv wp-cli.phar /usr/local/bin/wp | |
| wp core install --url=example.com --title=QuickWP --admin_user=admin --admin_password=123456 --admin_email=info@example.com | |
| wp scaffold child-theme twentysixteen-child --parent_theme=twentysixteen | |
| npm install -g bower | |
| cd wp-content/themes/twentysixteen-child/ | |
| bower install --save datatables.net | |
| bower install --save datatables.net-dt | |
| wp core update | |
| wp core update-db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment