Skip to content

Instantly share code, notes, and snippets.

@sethrubenstein
Created March 3, 2014 01:48
Show Gist options
  • Save sethrubenstein/9317155 to your computer and use it in GitHub Desktop.
Save sethrubenstein/9317155 to your computer and use it in GitHub Desktop.
Remove 'posts' menu from WP admin
function remove_menus() {
global $menu;
$restricted = array( __('Posts'));
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