Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 19, 2014 07:35
Show Gist options
  • Save ABooooo/cbfccc9b48420939809c to your computer and use it in GitHub Desktop.
Save ABooooo/cbfccc9b48420939809c to your computer and use it in GitHub Desktop.
Dropdown bootstrap menu
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