-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop.php
executable file
·32 lines (31 loc) · 1.04 KB
/
top.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
<?php
/**
* @package WordPress
* @subpackage monochromatic
*/
?>
<header id="header">
<div class="row">
<div class="logo_container">
<a class="logo" href="<?php echo home_url(); ?>">
<?php if ( get_theme_mod( 'monochromatic_logo' ) ) : ?>
<div class='site-logo'>
<h1 class="remove-bottom site-title"><img class="scale-with-grid" src='<?php echo esc_url( get_theme_mod( 'monochromatic_logo' ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></h1>
</div>
<?php else : ?>
<h1 class="remove-bottom site-title"><?php bloginfo('title'); ?></h1>
<!--<h5 class="site-description"><?php bloginfo('description'); ?></h5>-->
<?php endif; ?>
</a>
</div>
<?php if ( get_theme_mod( 'monochromatic_navigation' ) == "header") { ?>
<?php
if (has_nav_menu('navigation')) { ?>
<nav class="navigation" id="header-nav">
<?php wp_nav_menu( array( 'theme_location' => 'navigation' ) ); ?>
<br class="clear" />
</nav>
<?php } ?>
<?php } ?>
</div>
</header>