Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created July 26, 2014 01:38
Show Gist options
  • Save bappi-d-great/9afa829fed9591b8a615 to your computer and use it in GitHub Desktop.
Save bappi-d-great/9afa829fed9591b8a615 to your computer and use it in GitHub Desktop.
Stop accessing themes.php for subsite admin in a multisite
<?php
add_action('admin_init', 'disallowed_theme_page');
function disallowed_theme_page() {
global $pagenow;
if($pagenow == 'themes.php' && !is_super_admin()){
wp_redirect(admin_url());
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment