-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
31 lines (25 loc) · 854 Bytes
/
header.php
File metadata and controls
31 lines (25 loc) · 854 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
28
29
30
31
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="header-container">
<div id="headerimg">
<h1>
<a href="<?php echo get_option('home'); ?>">
<img src="<?php header_image(); ?>"
height="<?php echo get_custom_header()->height; ?>"
width="<?php echo get_custom_header()->width; ?>" alt="" />
</a>
</h1>
</div><!-- end header img -->
</header> <!-- end header -->
<div id="nav">
<ul>
<?php wp_nav_menu( array( 'theme_location' => 'primary-menu' ) ); ?>
</ul>
</div><!-- ends nav div -->