-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhero.php
More file actions
27 lines (26 loc) · 955 Bytes
/
hero.php
File metadata and controls
27 lines (26 loc) · 955 Bytes
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
<div class="header">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php if(current_theme_supports("custom-logo")): ?>
<div class="custom-logo">
<?php the_custom_logo(); ?>
</div>
<?php endif; ?>
<h3 class="tagline"><?php bloginfo('description'); ?></h3>
<h1 class="align-self-center display-1 text-center heading"><?php bloginfo('name'); ?></h1>
</div>
<div class="col-md-12">
<div class="navigation">
<?php
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_id' => '',
'menu_class' => 'list-inline text-center'
));
?>
</div>
</div>
</div>
</div>
</div>