Created
November 10, 2016 02:26
-
-
Save thinhbg59/6b65dfcbfcd20c9e45730171e2254c63 to your computer and use it in GitHub Desktop.
ưet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="navbar-wrapper"> | |
| <div class="navbar navbar-default" role="navigation"> | |
| <div class="noo-container"> | |
| <div class="noo-navbar-header"> | |
| <?php if( isset($search) && $search == true ): ?> | |
| <a class="noo-search" href="#"> | |
| <i class="icon_search"></i> | |
| <?php echo esc_html__('Search','noo-umbra'); ?> | |
| </a> | |
| <?php endif; ?> | |
| <div class="navbar-logo"> | |
| <?php noo_umbra_the_custom_logo(); ?> | |
| </div><!--end .navbar-logo--> | |
| <ul class="noo-cart-simple"> | |
| <?php if(function_exists('noo_umbra_minicart') && $cart == true) echo noo_umbra_minicart(); ?> | |
| </ul> | |
| <button data-target=".nav-collapse" class="btn-navbar noo_icon_menu icon_menu" type="button"> | |
| </button> | |
| </div><!--end .noo-navbar-header--> | |
| <nav class="noo-main-menu"> | |
| <?php | |
| wp_nav_menu( array( | |
| 'theme_location' => 'primary', | |
| 'container' => false, | |
| 'menu_class' => 'nav-collapse navbar-nav', | |
| 'fallback_cb' => 'noo_umbra_notice_set_menu', | |
| 'walker' => new Noo_Umbra_Megamenu_Walker | |
| ) ); | |
| ?> | |
| </nav><!--end .noo-main-menu--> | |
| </div><!--end .noo-container--> | |
| </div><!--end .navbar-default--> | |
| </div><!--end .navbar-wrapper--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment