NockedPress

The Code junkyard => Wordpress code => Topic started by: mkmcst on Jul 30, 2026, 10:27 PM

Title: how to hide a menu entry in wordpress
Post by: mkmcst on Jul 30, 2026, 10:27 PM
add_filter('wp_nav_menu_objects', 'mkmcst_hide_manage_menu_item', 10, 2);

function mkmcst_hide_manage_menu_item($items, $args) {
    if (!is_user_logged_in()) {
        foreach ($items as $key => $item) {
            // Target the 'manage' link by URL
            if ($item->url == 'https://plimothtoday.com/manage/') {
                unset($items[$key]);
            }
        }
    }
    return $items;
}
Title: Re: how to hide a menu entry in wordpress
Post by: mkmcst on Jul 30, 2026, 10:29 PM
make sure to change the  https://plimothtoday.com/manage/  to the url to the menu tab your trying to hide