Skip to content

Instantly share code, notes, and snippets.

@eyecandy91
Created September 4, 2019 13:59
Show Gist options
  • Save eyecandy91/76ab637655b06ba8fe9c8b0459133830 to your computer and use it in GitHub Desktop.
Save eyecandy91/76ab637655b06ba8fe9c8b0459133830 to your computer and use it in GitHub Desktop.
bootstrap walker wp
<?php /* menu */
wp_nav_menu( array(
'menu' => 'menu-1',
'theme_location' => 'menu-1',
'depth' => 5,
'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())
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment