b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/themes/astra/template-parts/header/builder/
File Upload :
Current File : E:/wordpress/wp-content/themes/astra/template-parts/header/builder/desktop-builder-layout.php

<?php
/**
 * Template part for displaying header row.
 *
 * @package Astra Builder
 */

$astra_mobile_header_type = astra_get_option( 'mobile-header-type' );

if ( 'full-width' === $astra_mobile_header_type ) {

	$astra_mobile_header_type = 'off-canvas';
}
?>
<div id="ast-desktop-header" data-toggle-type="<?php echo esc_attr( $astra_mobile_header_type ); ?>">
	<?php
		astra_main_header_bar_top();

		/**
		 * Astra Top Header
		 */
		do_action( 'astra_above_header' );

		/**
		 * Astra Main Header
		 */
		do_action( 'astra_primary_header' );

		/**
		 * Astra Bottom Header
		 */
		do_action( 'astra_below_header' );

		astra_main_header_bar_bottom();
	?>
<?php
if ( ( 'dropdown' === $astra_mobile_header_type && Astra_Builder_Helper::is_component_loaded( 'mobile-trigger', 'header' ) ) || is_customize_preview() ) {
	$astra_content_alignment = astra_get_option( 'header-offcanvas-content-alignment', 'flex-start' );
	$astra_alignment_class   = 'content-align-' . $astra_content_alignment . ' ';
	?>
	<div class="ast-desktop-header-content <?php echo esc_attr( $astra_alignment_class ); ?>">
		<?php do_action( 'astra_desktop_header_content', 'popup', 'content' ); ?>
	</div>
<?php } ?>
</div> <!-- Main Header Bar Wrap -->
<?php
/**
 * Astra Mobile Header
 */
do_action( 'astra_mobile_header' );
?>

Copyright © 2019 by b0y-101