Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created May 14, 2015 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lynt-smitka/89f8cb53e477ec740b7b to your computer and use it in GitHub Desktop.
Save lynt-smitka/89f8cb53e477ec740b7b to your computer and use it in GitHub Desktop.
Sparkling - 3th level menu
//do functions.php
function sparkling_header_menu() {
wp_nav_menu(array(
'menu' => 'primary',
'theme_location' => 'primary',
'depth' => 3,
'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()
));
}
//do style.css (a trochu doladit)
ul.nav ul ul {
margin: -44px 0 0 150px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment