How can I hide Home in my menu in a specific page in WordPress?

I want to know how can I hide the home in the menu without setting show_home in functions.php to false, I just want to do is hide it in a specific page. How can I do this? 🙂

Related posts

Leave a Reply

1 comment

  1. I would advise hiding it with CSS:

    .page-item-X.menu-item-Y { display: none; }
    

    X = Page ID
    Y = Menu item ID

    This would be the easiest and simplest way of doing things.