Your IP : 216.73.216.187


Current Path : /home/e/x/h/exhehbu/wp/wp-content/themes/revolution/inc/templates/header/
Upload File :
Current File : /home/e/x/h/exhehbu/wp/wp-content/themes/revolution/inc/templates/header/subheader-style3.php

<?php
	$subheader_color       = ot_get_option( 'subheader_color' );
	$subheader_class[]     = 'subheader style3';
	$subheader_class[]     = $subheader_color;
	$header_style          = ot_get_option( 'header_style' );
	$full_menu_hover_style = ot_get_option( 'full_menu_hover_style', 'thb-standard' );
	$subheader_menu        = ot_get_option( 'subheader_menu' );
	$subheader_text        = ot_get_option( 'subheader_text' );
if ( in_array( $header_style, array( 'style7', 'style8' ), true ) ) {
	return;
}
?>
<div class="<?php echo esc_attr( implode( ' ', $subheader_class ) ); ?>">
	<div class="row align-middle">
		<div class="small-12 medium-6 columns subheader-left">
			<?php if ( $subheader_text ) { ?>
				<?php echo do_shortcode( $subheader_text ); ?>
			<?php } ?>
		</div>
		<div class="small-12 medium-6 columns subheader-right">
			<?php
			if ( $subheader_menu ) {
				wp_nav_menu(
					array(
						'menu'       => $subheader_menu,
						'container'  => false,
						'depth'      => 1,
						'menu_class' => 'thb-full-menu ' . $full_menu_hover_style,
					)
				); }
			?>
		</div>
	</div>
</div>