Created
August 19, 2014 07:35
-
-
Save ABooooo/cbfccc9b48420939809c to your computer and use it in GitHub Desktop.
Dropdown bootstrap menu
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
https://github.com/twittem/wp-bootstrap-navwalker | |
http://astronautweb.co/2012/10/wordpress-dropdown-bootstrap/ | |
http://code.tutsplus.com/tutorials/how-to-integrate-bootstrap-navbar-into-wordpress-theme--wp-33410 | |
// insert in menu code instead of wordpress menu code | |
<?php | |
wp_nav_menu( array( | |
'menu' => 'primary', | |
'theme_location' => 'primary', | |
'depth' => 2, | |
'container' => 'div', | |
'container_class' => 'collapse navbar-collapse', | |
'container_id' => 'bs-example-navbar-collapse-1', | |
'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