Skip to content

Instantly share code, notes, and snippets.

@ValeryToda
Created July 8, 2011 21:56
Show Gist options
  • Save ValeryToda/1072926 to your computer and use it in GitHub Desktop.
Save ValeryToda/1072926 to your computer and use it in GitHub Desktop.
How to remove menu items from WordPress dashboard
<?php
/**
* Just include this code snippet somewhere inside the functions.php file of your theme.
* Originally posted by hungred @ hungred.com/how-to/remove-wordpress-admin-menu-affecting-wordpress-core-system/
* Thanks for that. Give credit where credit is due.
**/
function 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', 'remove_menus');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment