• on my website I Use different Navigation Menus, wich I use for navigation to different pages. (the menu’s are placed on different locations on the website)

    This is how I call the navigation menu’s:

    <?php wp_nav_menu( array( ‘menu’ => ‘Wat’ ) ); ?>
    <?php wp_nav_menu( array( ‘menu’ => ‘Wie’ ) ); ?>
    <?php wp_nav_menu( array( ‘menu’ => ‘Waar’ ) ); ?>

    Can I display name of the selected menu (wp_nav_menu)? So I can make custom made breadcrumbs?

    For example…
    HOME -> WAT -> Page 1
    HOME -> WIE -> Page 2

  • The topic ‘Display name of the WP_Nav_Menu’ is closed to new replies.