Skip to content

Instantly share code, notes, and snippets.

@andrezrv
Created April 21, 2014 04:42
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 andrezrv/11132463 to your computer and use it in GitHub Desktop.
Save andrezrv/11132463 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'option_active_plugins', 'activate_local_plugins' );
/**
* Add our local plugins to the list of active plugins.
*/
function activate_local_plugins( $plugins ) {
if ( defined( 'WP_STAGE' ) && 'local' == WP_STAGE ) {
$local_plugins = array(
'wordpress-beta-tester/wp-beta-tester.php',
'wordpress-importer/wordpress-importer.php',
);
foreach ( $local_plugins as $plugin ) {
$plugins[] = $plugin;
}
}
return $plugins;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment