Skip to content

Instantly share code, notes, and snippets.

@bmcculley
Last active January 2, 2016 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmcculley/8292519 to your computer and use it in GitHub Desktop.
Save bmcculley/8292519 to your computer and use it in GitHub Desktop.
Easily setup a WordPress install with the plugins necessary for reviewing themes.
plugins=("http://downloads.wordpress.org/plugin/theme-check.20131213.1.zip"
"http://downloads.wordpress.org/plugin/debug-bar.0.8.1.zip"
"http://downloads.wordpress.org/plugin/log-deprecated-notices.0.2.zip"
"downloads.wordpress.org/plugin/debogger.0.71.zip"
"http://downloads.wordpress.org/plugin/monster-widget.zip"
"http://downloads.wordpress.org/plugin/wordpress-beta-tester.0.99.zip"
"http://downloads.wordpress.org/plugin/regenerate-thumbnails.zip")
for plugin in "${plugins[@]}"
do
sudo wget $plugin
filename=${plugin##*/}
sudo unzip $filename
sudo rm $filename
done
echo "plugins ready!"
@bmcculley
Copy link
Author

Recommended theme reviewer setup

Usage Instructions

  • Place this script in the WordPress plugins directory.
  • Make file executable.
  • Run as super user
  • Get assigned a theme to review...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment