Hi does anyone know how to remove the "Header" sub-menu item from my Admin. Panel? The code that I tried to use did not work...
functions.php file:
function remove_submenus() {
global $submenu;
unset($submenu['admin-header.php'][2]); // Removes 'Header'.
}
add_action('admin_menu', 'remove_submenus');
[Please post code snippets between backticks or use the code button.]
Thanks.