Skip to content

Instantly share code, notes, and snippets.

@raaar
Created October 13, 2012 15:28
Show Gist options
  • Save raaar/3884996 to your computer and use it in GitHub Desktop.
Save raaar/3884996 to your computer and use it in GitHub Desktop.
WORDPRESS: remove uneeded menus from admin
function remove_menus () {
global $menu;
$restricted = array(__('Posts'), __('Links'), __('Pages'), __('Comments') );
end ($menu);
while (prev($menu)){
$value = explode(' ',$menu[key($menu)][0]);
if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);}
}
}
add_action('admin_menu', 'remove_menus');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment