Skip to content

Instantly share code, notes, and snippets.

@geeac
Forked from aaroneaton/provision-post.sh
Created October 11, 2015 08:01
Show Gist options
  • Save geeac/046c43b412bb8b494c51 to your computer and use it in GitHub Desktop.
Save geeac/046c43b412bb8b494c51 to your computer and use it in GitHub Desktop.
Setup themes & plugins after VVV provision
# Get rid of the default crap
wp site empty --yes
# Remove Hello Dolly (sorry Matt)
wp plugin uninstall hello
# Install Genesis framework
wp theme install <super-secret-url-for-genesis>
# Install plugins available in repo
wp plugin install debug-bar --activate # Don't forget the 'activate' flag
[more repo plugins]
# Install plugins from url
wp plugin install <super-secret-url-for-gravity-forms> --activate
[more url plugins]
# Import from theme unit test (work in progress)
git clone https://github.com/manovotny/wptest.git
wp import ../wptest/wptest.xml --authors=create
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment