Skip to content

Instantly share code, notes, and snippets.

@andrewwoods
Created July 22, 2015 01:23
Show Gist options
  • Save andrewwoods/c1db1072596a5c115325 to your computer and use it in GitHub Desktop.
Save andrewwoods/c1db1072596a5c115325 to your computer and use it in GitHub Desktop.
Install a list of WordPress Plugins
#
# wp_install_plugins
#
# $ wp_install_plugins ~/wp-plugins.txt
#
# text file with a list of wordpress.org plugin slugs. one per line.
#
function wp_install_plugins
{
for plugin_id in `cat $1`
do
wp plugin install $plugin_id
done
wp plugin status
}
contact-form-7
google-sitemap-generator
simple-301-redirects
webmention
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment