-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·39 lines (37 loc) · 1 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
36
37
38
39
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Hamdocs
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<a class="skip-link screen-reader-text" href="#primary">コンテンツにスキップする</a>
<header class="site-header">
<?php if ( is_front_page() ) : ?>
<h1 class="site-logo"><?php hamdocs_the_site_name(); ?></h1>
<?php else : ?>
<div class="site-logo"><?php hamdocs_the_site_name(); ?></div>
<?php endif; ?>
<?php
wp_nav_menu(
array(
'theme_location' => 'header',
'container' => 'nav',
'container_class' => 'site-header-nav',
'menu_class' => 'menu',
)
);
?>
</header>