blob: f16bc97e3527d8f56b58db47bf5fa8ce72ca53f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?php
/**
* Template part for displaying header row.
*
* @package Astra Builder
*/
$mobile_header_type = astra_get_option( 'mobile-header-type' );
if ( 'full-width' === $mobile_header_type ) {
$mobile_header_type = 'off-canvas';
}
?>
<div id="ast-desktop-header" data-toggle-type="<?php echo esc_attr( $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' === $mobile_header_type || is_customize_preview() ) {
$content_alignment = astra_get_option( 'header-offcanvas-content-alignment', 'flex-start' );
$alignment_class = 'content-align-' . $content_alignment . ' ';
?>
<div class="ast-desktop-header-content <?php echo esc_attr( $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' );
?>
|