-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
32 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php if (is_front_page()) : ?>
<meta name="description" content="Descrição breve da sua página inicial.">
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header>
<div class="hamburger-menu">
<span>☰ Menu</span>
</div>
<div class="site-title">
<h1><a href="<?php echo esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a></h1>
<p><?php bloginfo('description'); ?></p>
</div>
<nav>
<?php wp_nav_menu(array('theme_location' => 'header-menu')); ?>
</nav>
</header>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.querySelector('.hamburger-menu').addEventListener('click', function () {
document.querySelector('nav ul').classList.toggle('open');
});
});
</script>
</body>
</html>