下面的代码删除菜单,将其放置在主题函数中。php文件:
// Remove unneeded menus
function sc_remove_menus()
{
// setup the global menu variable
global $menu;
// this is an array of the menu item names we wish to remove
$restricted = array( __(\'Links\'),__(\'Tools\'),__(\'Comments\'), __(\'Media\'));
end ($menu);
while (prev($menu))
{
$value = explode(\' \',$menu[key($menu)][0]);
if(in_array($value[0] != NULL?$value[0]:"" , $restricted))
{
unset($menu[key($menu)]);
}
}
}
// hook into the action that creates the menu
add_action(\'admin_menu\', \'sc_remove_menus\');
如果只想删除工具,请更改此行:
$restricted = array( __(\'Links\'),__(\'Tools\'),__(\'Comments\'), __(\'Media\'));
收件人:
$restricted = array(__(\'Tools\'));
这只会删除菜单项。您仍然可以通过手动键入URL来访问工具。