Skip to content

Instantly share code, notes, and snippets.

@alexmustin
Last active August 3, 2020 23:02
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 alexmustin/e8a6d48f9ca3e12c9527bcd649291abb to your computer and use it in GitHub Desktop.
Save alexmustin/e8a6d48f9ca3e12c9527bcd649291abb to your computer and use it in GitHub Desktop.
Understrap - Off-canvas Mobile Menu
<?php
// ...
<!-- // HAMBURGER MENU TOGGLE // -->
<button class="navbar-toggler" type="button" data-toggle="modal" data-target="#menuModal" aria-controls="#menuModal" aria-expanded="false" aria-label="<?php esc_attr_e( 'Toggle navigation', 'understrap' ); ?>">
<i class="fa fa-bars menu_burger" aria-hidden="true"></i>
</button>
<!-- // DESKTOP MENU // -->
<?php wp_nav_menu(
array(
'theme_location' => 'primary',
'container_class' => 'collapse navbar-collapse',
'container_id' => 'navbarNavDropdown',
'menu_class' => 'navbar-nav ml-auto',
'fallback_cb' => '',
'menu_id' => 'main-menu',
'depth' => 2,
'walker' => new Understrap_WP_Bootstrap_Navwalker(),
)
); ?>
<!-- // OFF-CANVAS MOBILE MENU // -->
<div class="modal fade" id="menuModal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<!-- // Mobile Menu // -->
<?php wp_nav_menu(
array(
'theme_location' => 'primary',
'container_class' => 'modal-body',
'container_id' => '',
'menu_class' => 'navbar-nav ml-auto',
'fallback_cb' => '',
'menu_id' => 'main-menu',
'depth' => 2,
'walker' => new Understrap_WP_Bootstrap_Navwalker(),
)
); ?>
</div>
</div>
</div>
<?php
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment