Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Last active October 30, 2018 14:41
Show Gist options
  • Save nfsarmento/190fb93b19250efdd0ea06f615b42827 to your computer and use it in GitHub Desktop.
Save nfsarmento/190fb93b19250efdd0ea06f615b42827 to your computer and use it in GitHub Desktop.
Remove Menus in WordPress Dashboard
/** Remove Menus in WordPress Dashboard
*
* https://www.nuno-sarmento.com
*/
function ns_remove_menus () {
global $menu;
$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('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', 'ns_remove_menus');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment