Created
April 26, 2018 14:24
-
-
Save mrkkr/1bd43e11dde44ffd6d97da4c0d4ed65d to your computer and use it in GitHub Desktop.
Add custom items (wraps) to menu item Wordpress #php
This file contains 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 | |
wp_nav_menu( | |
array( | |
'theme_location' => 'primary', | |
'items_wrap' => my_nav_wrap(), | |
'container_class' => 'collapse navbar-collapse', | |
'container_id' => 'mobileCategoryMenu', | |
'menu_class' => 'navbar-nav mobile-cat-menu', | |
'menu_id' => 'mobile-cat-menu', | |
'depth' => 3, | |
'walker' => new wp_bootstrap_navwalker(), | |
) | |
); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment