-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubheader.php
55 lines (43 loc) · 1.21 KB
/
subheader.php
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
52
53
54
55
<header class="holder-header rhea-subheader" id="sticky-header">
<div class="container">
<div class="text-left col-md-3 col-sm-3 col-xs-6">
<?php
if( has_custom_logo() ) {
the_custom_logo();
} else {
?>
<div class="site-title-tagline-wrapper">
<h1 class="site-title">
<a href=" <?php echo esc_url( home_url( '/' ) ) ?> ">
<?php bloginfo( 'title' ) ?>
</a>
</h1>
<?php
$description = get_bloginfo( 'description', 'display' );
if ( ! empty( $description ) ) : ?>
<p class="site-description">
<?php echo $description; ?>
</p> <!-- /.site-description -->
<?php elseif( is_customize_preview() ): ?>
<p class="site-description"></p>
<?php endif; ?>
</div> <!-- /.site-title-tagline-wrapper -->
<?php } ?>
</div>
<div class="rhea-primary-menu col-md-9 col-sm-9 col-xs-6">
<div class="mobile-menu-burger">
<div class="">
<div class="burger-menu-icon">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<?php do_action( 'rhea_output_menu' ); ?>
</div>
</div>
</header>