-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
30 lines (29 loc) · 877 Bytes
/
Copy pathheader.php
File metadata and controls
30 lines (29 loc) · 877 Bytes
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="site-header">
<div class="container site-header-inner">
<div>
<h1 class="site-title">
<a href="<?php echo esc_url(home_url('/')); ?>"><?php bloginfo('name'); ?></a>
</h1>
<p style="font-size: 0.9rem; color:#9ca3af;">
<?php bloginfo('description'); ?>
</p>
</div>
<nav class="site-nav">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container' => false,
'fallback_cb' => false,
'items_wrap' => '%3$s', // niente <ul>, usiamo direttamente i <a> (lo stile li prende lo stesso)
) );
?>
</nav>
</div>
</header>