Multilevel drop-down menu in WordPress with Bootstrap 3
To integrate Bootstrap 3 navigation menu to WordPress you can use the following walker class: https://github.com/twittem/wp-bootstrap-navwalker But, the problem is it only allows a single dropdown level to honer BootStrap 3's mobile first philosophy. Fortunately, the guy this blog post had done a little hack to bootstrap and the walker class above to support multilevel drop-down menu: Blog post: http://www.jeffmould.com/2014/01/09/responsive-multi-level-bootstrap-menu/ Github repo: https://github.com/jeffmould/multi-level-bootstrap-menu Basically, what you should do to have a bootstrap 3 style dropdown menu in your WordPress theme are: 1. Copy the wp-bootstrap-navwalker.php file from the github repo to the theme's root directory 2. Add this style to your theme: .dropdown-submenu{position:relative;} .dropdown-submenu>.dropdown-menu{top:0;left:100%;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} .dropdo...