-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
27 lines (25 loc) · 907 Bytes
/
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo("charset"); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="bg-black text-white">
<div class="container mx-auto flex justify-between items-center p-4">
<div class="logo">
<a href="<?php echo esc_url(home_url("/")); ?>">
<?php bloginfo("name"); ?>
</a>
</div>
<nav class="header-menu">
<?php wp_nav_menu([
"theme_location" => "primary",
"container" => false,
"menu_class" => "flex",
"fallback_cb" => false,
]); ?>
</nav>
</div>
</header>