-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader-showcase.php
More file actions
36 lines (30 loc) · 838 Bytes
/
header-showcase.php
File metadata and controls
36 lines (30 loc) · 838 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
31
32
33
34
35
36
<!DOCTYPE html>
<html class="no-js" <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
<?php wp_title( '|', true, 'right' ) ?>
<?php bloginfo( 'tagline' ); ?> -
<?php bloginfo( 'description' ); ?>
</title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="www" <?php body_class(); ?>>
<header id="header-showcase" class="ww">
<div class="cc">
<?php
wp_nav_menu( array(
'menu' => get_field( 'nav_menu' ),
'container' => 'nav',
'container_class' => '',
'container_id' => 'nav-showcase',
'menu_class' => 'c',
'menu_id' => 'nav-c',
'fallback_cb' => false,
'depth' => 1,
));
?>
</div>
</header>