header.php (504B)
1 <?php 2 $header_style = get_query_var( 'header_type' ); 3 if ( ! $header_style ) { 4 $header_style = welbim_get_options( 'header_style' ); 5 } 6 ?> 7 8 <?php if ( $header_style == '3' ) : ?> 9 <?php get_template_part( 'components/header/header-style/header-style-elementor' ); ?> 10 <?php elseif ( $header_style == '2' ) : ?> 11 <?php get_template_part( 'components/header/header-style/header-style-two' ); ?> 12 <?php else : ?> 13 <?php get_template_part( 'components/header/header-style/header-style-one' ); ?> 14 <?php 15 endif;