-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
35 lines (33 loc) · 1.01 KB
/
header.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
<!DOCTYPE html>
<html lang="<?php language_attributes(); ?> ">
<head>
<title><?php echo wp_get_document_title(); ?></title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/font-awesome.min.css">
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style.css">
<?php wp_head(); ?>
</head>
<body>
<div class="nav">
<div>
<div><a href="<?php echo site_url('/','relative'); ?>">
<img class="logo" src="<?php bloginfo('template_directory'); ?>/images/logo.png">
</a></div>
</div>
<div>
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu(array( 'theme_location' => 'header_left_menu', 'depth' => 1,));
}
?>
</div>
<div>
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu(array( 'theme_location' => 'header_right_menu', 'depth' => 1,));
}
?>
</div>
</div>