Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/0852b52bbdc8ef226269 to your computer and use it in GitHub Desktop.
Save schalkburger/0852b52bbdc8ef226269 to your computer and use it in GitHub Desktop.
Removes menus in Wordpress
function remove_menus () {
global $menu;
$restricted = array(__('Appearance'), __('Tools'), __('Settings'), __('Plugins'));
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