Revision: 44717
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 16, 2011 05:35 by prwhitehead
Initial Code
/**
* to remove items from the wordpress admin menu uncomment them from the list
*
*
*/
function remove_menus () {
global $menu;
$restricted = array(
__('Dashboard'),
__('Posts'),
__('Media'),
__('Links'),
__('Pages'),
__('Appearance'),
__('Tools'),
__('Users'),
__('Settings'),
__('Comments'),
__('Plugins'),
__('Gallery')
);
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');
Initial URL
Initial Description
Remove menu items from the wordpress admin
Initial Title
Wordpress: remove menu items
Initial Tags
php, wordpress
Initial Language
PHP