| Server IP : 3.96.16.70 / Your IP : 216.73.216.15 Web Server : Apache System : Linux ip-172-31-26-103.ca-central-1.compute.internal 6.1.163-186.299.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 24 16:35:42 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wondermakr.com/wp-content/themes/wondermakr-theme/ |
Upload File : |
<?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 wondermakr-theme
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<!-- STAGING SITE -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XKKZJBFCFP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XKKZJBFCFP');
</script>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" href="<?php echo(get_template_directory_uri()); ?>/images/apple-touch-icon.png" sizes="180x180">
<link rel="icon" href="<?php echo(get_template_directory_uri()); ?>/images/favicon-32.png" sizes="32x32">
<link rel="icon" href="<?php echo(get_template_directory_uri()); ?>/images/favicon-128.png" sizes="128x128">
<link rel="icon" href="<?php echo(get_template_directory_uri()); ?>/images/favicon-180.png" sizes="180x180">
<link rel="icon" href="<?php echo(get_template_directory_uri()); ?>/images/favicon-192.png" sizes="192x192">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="site-header">
<div class="header-inner">
<!-- Site Logo -->
<div class="site-logo">
<a href="<?php echo esc_url(home_url('/')); ?>">
<?php
// Use custom logo if set in Customizer
if (has_custom_logo()) {
the_custom_logo();
} else {
echo '<span class="site-title">' . get_bloginfo('name') . '</span>';
}
?>
</a>
</div>
<!-- Navigation -->
<nav class="site-nav">
<?php
wp_nav_menu([
'theme_location' => 'header_menu',
'container' => false,
'menu_class' => 'main-menu',
'fallback_cb' => false
]);
?>
<!--
<ul>
<li><a href="<?php echo esc_url( home_url('/how-we-make-it') ); ?>">How We Make It</a></li>
<li><a href="<?php echo esc_url( home_url('/what-we-make') ); ?>">What We Make</a></li>
<li><a href="<?php echo esc_url( home_url('/what-weve-made') ); ?>">What We’ve Made</a></li>
<li><a href="<?php echo esc_url( home_url('/contact') ); ?>">Contact</a></li>
</ul>
-->
</nav>
<!-- Mobile Menu Toggle -->
<button class="menu-toggle" aria-label="Toggle Menu">
<span></span><span></span><span></span>
</button>
</div>
</header>