????

Your IP : 216.73.216.174


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/header/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/header/header-menu-mobile-fixed-top.php

<?php
/**
 * Mobile Icons Header Menu.
 *
 * @package Wanderfuls WordPress Theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Menu Location
$menu_location = apply_filters( 'tb_main_menu_location', 'main_menu' );

// Multisite global menu
$ms_global_menu = apply_filters( 'tb_ms_global_menu', false );

// Display if menu is defined
if ( has_nav_menu( $menu_location ) || $ms_global_menu ) : ?>

	<?php
	// Closing toggle for the sidr mobile menu style
	if ( 'sidr' == tb_global_obj( 'mobile_menu_style' ) ) : ?>

		<div id="sidr-close"><a href="#sidr-close" class="toggle-sidr-close"></a></div>

	<?php endif; ?>

	<div id="tb-mobile-menu-fixed-top" class="clr tb-hidden">
		<div class="container clr">
			<a href="#mobile-menu" class="mobile-menu-toggle"><?php echo apply_filters( 'tb_mobile_menu_open_button_text', '<span class="fa fa-navicon"></span>' ); ?><?php echo tb_get_mod( 'mobile_menu_toggle_text', _x( 'Menu', 'Mobile Menu Toggle Button Text', 'tb' ) ); ?></a>
		</div><!-- .container -->
	</div><!-- #mobile-menu -->

<?php endif; ?>