Skip to content

Instantly share code, notes, and snippets.

@cmwelsh
Created October 14, 2011 20:32
Show Gist options
  • Save cmwelsh/1288250 to your computer and use it in GitHub Desktop.
Save cmwelsh/1288250 to your computer and use it in GitHub Desktop.
Remove WordPress admin menu items
<?php
function remove_menus () {
global $menu;
// Any menu named below will be removed from the admin sidebar
$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_head', 'remove_menus');
@cmwelsh
Copy link
Author

cmwelsh commented Oct 14, 2011

Surprisingly, it works great.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment