-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
39 lines (35 loc) · 1.31 KB
/
header.php
File metadata and controls
39 lines (35 loc) · 1.31 KB
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
<?php ini_set('display_errors', 0);?>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="keywords" content="キーワードでサイトを説明">
<meta name="description" content="どんなサイトか短い文章で説明">
<title>サイトのタイトル</title>
<link rel="shortcut icon" href="favicon.ico">
<?php wp_head(); ?>
</head>
<body class="drawer drawer--left">
<header role="banner">
<button type="button" class="drawer-toggle drawer-hamburger">
<span class="sr-only">toggle navigation</span>
<span class="drawer-hamburger-icon"></span>
</button>
<nav class="drawer-nav" role="navigation">
<!-- テンプレートファイルのメニューを表示したい場所に記述 -->
<?php
wp_nav_menu( array(
'theme_location' => 'main-menu',
'container' => 'false',
'menu_class' => 'drawer-menu'
) );
?>
<!-- <li><a class="drawer-brand" href="#">Brand</a></li>
<li><a class="drawer-menu-item" href="#">Nav1</a></li>
<li><a class="drawer-menu-item" href="#">Nav2</a></li> -->
</nav>
</header>
<main role="main">
<!-- Page content -->