RelevanceDigital / wp-bs4-starter-theme

A Wordpress starter theme based on Undescores and Bootstrap 4
GNU General Public License v2.0
3 stars 2 forks source link

Add example footer menu #6

Open robwent opened 5 years ago

robwent commented 5 years ago

Menu is registered so add the output using the simplenav walker

robwent commented 5 years ago
<?php wp_nav_menu( array(
        'theme_location' => 'menu-2',
        'container'      => 'ul',
        'menu_class'     => 'nav justify-content-center text-uppercase links',
        'walker'         => new wp_simple_walker()
    ) ); ?>