Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theodorocaliari/6ba8ffb6617bed017a85 to your computer and use it in GitHub Desktop.
Save theodorocaliari/6ba8ffb6617bed017a85 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 ( '127.0.0.1' == $_SERVER['SERVER_ADDR'] ) {
$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