Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created March 3, 2012 08:32
Show Gist options
  • Save DrewAPicture/1965004 to your computer and use it in GitHub Desktop.
Save DrewAPicture/1965004 to your computer and use it in GitHub Desktop.
$is_ms = '';
if ( is_multisite() ) $is_ms = 'network/';
if ( $_SERVER['PHP_SELF'] === '/wp-admin/' . $is_ms . 'plugin-editor.php' ||
$_SERVER['PHP_SELF'] === '/wp-admin/' . $is_ms . 'theme-editor.php' ||
$_SERVER['PHP_SELF'] === '/wp-admin/admin-ajax.php' ){
add_action( 'init', create_function( '', 'new WPide();' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment