• I’ve tried different plugins without help. On my website aeldreit.dk. I want to do the following.
    1) on my frontpage i dont wont any top menu displayed at all. They only have to be displayed on the others, i.e aeldreit.dk/kontakt

    Regards,

    Anders

Viewing 2 replies - 1 through 2 (of 2 total)
  • In very basic form this will ensure that the menu is only displayed when NOT on the homepage.

    <?php
    if ( is_home() ) {
        // This is a homepage
    } else {
        wp_nav_menu();
    }
    ?>
    Thread Starter aeldreit

    (@aeldreit)

    That sounds perfect, where should i place it?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom menu’ is closed to new replies.