Forums

[resolved] How to remove the "Header" sub-menu item from my Admin. Panel. (3 posts)

  1. Sandra408
    Member
    Posted 6 months ago #

    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.

  2. esmi
    Theme Diva & Forum Moderator
    Posted 6 months ago #

    You will need to remove the HEADER_xxx definitions in your theme's functions.php. Or - if it's a child theme - redefine the theme_setup function.

  3. Sandra408
    Member
    Posted 6 months ago #

    Thanks, it worked...

Reply

You must log in to post.

About this Topic