Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created February 20, 2015 18:45
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 theukedge/3b8120df4b43ece4aab7 to your computer and use it in GitHub Desktop.
Save theukedge/3b8120df4b43ece4aab7 to your computer and use it in GitHub Desktop.
<?php /* Disable specified plugins in development environment */
if ( defined( 'WP_ENV' ) && WP_ENV == 'dev' ) {
$plugins = array(
'iwp-client/init.php',
'google-analytics-for-wordpress/googleanalytics.php',
);
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
deactivate_plugins($plugins);
/* Put Jetpack in development mode */
define( 'JETPACK_DEV_DEBUG', true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment