-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·84 lines (58 loc) · 2.01 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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 USTR
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
<script src="https://kit.fontawesome.com/999eedfc1f.js" crossorigin="anonymous"></script>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<div class="container-fluid sticky-top bg-white">
<header id="masthead" class="site-header ">
<div class="d-flex bd-highlight">
<div class="mr-auto bd-highlight title desktop d-none d-lg-block">
<a href="/" class="text-dark">
<h1 class="m-0 p-0">Office <span>of the</span> United States Trade Representative</h1>
<h2 class="m-0 p-0">Executive Office of the President</h2>
</a>
</div>
<div class="mr-auto bd-highlight title mobile d-block d-lg-none">
<a href="/" class="text-dark">
<h1 class="m-0 p-0">USTR<span>.GOV</span></h1>
</a>
</div>
<div class="center-logo">
<a href="/">
<img src="<?php echo get_template_directory_uri(); ?>/img/ustr-seal-logo.png">
</a>
</div>
<div class=" d-xl-flex d-none">
<?php
$menu_items = wp_get_nav_menu_items('header');
foreach($menu_items as $item) {
?>
<div class="p-2 nav-item"><a href="<?php echo $item->{'url'}; ?>"><?php echo $item->{'title'}; ?></a></div>
<?php
// to know what's in $item
// echo '<pre>'; var_dump($item);
}
?>
<div class="p-2 nav-item"><a href="/search"><i class="fas fa-search"></i></a></div>
</div>
</div>
</header><!-- #masthead -->
</div>
<div id="page" class="site">