Created
September 4, 2019 13:59
-
-
Save eyecandy91/76ab637655b06ba8fe9c8b0459133830 to your computer and use it in GitHub Desktop.
bootstrap walker wp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php /* menu */ | |
wp_nav_menu( array( | |
'menu' => 'menu-1', | |
'theme_location' => 'menu-1', | |
'depth' => 5, | |
'container' => 'div', | |
'container_class' => 'collapse navbar-collapse navbar-ex1-collapse ', | |
'menu_class' => 'nav navbar-nav ', | |
'fallback_cb' => 'wp_bootstrap_navwalker::fallback', | |
'walker' => new wp_bootstrap_navwalker()) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment