Skip to content

Instantly share code, notes, and snippets.

@mitchellhislop
Created March 5, 2011 04:35
Show Gist options
  • Save mitchellhislop/856117 to your computer and use it in GitHub Desktop.
Save mitchellhislop/856117 to your computer and use it in GitHub Desktop.
function remove_submenu() {
global $submenu;
//remove Theme editor
unset($submenu['themes.php'][10]);
}
function remove_menu() {
global $menu;
//remove post top level menu
unset($menu[5]);
}
add_action('admin_head', 'remove_menu');
add_action('admin_head', 'remove_submenu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment