HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/jwitte/rednails.studio/wwwroot/wp-content/themes/glow/header.php
<?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 Glow
 */
?><!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="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="page">
    <?php
    ?>
	<header class="dt-site-header" role="banner">
        <div id="dt-header-nav" class="dt-main-menu-wrap transition-bg <?php if( is_front_page() && get_theme_mod( 'home_featured_posts' ) != '' ) : ?>dt-home-menu dt-main-menu-scroll<?php endif; ?>">
            <div class="container">
                <div class="container-wrapper">
                    <div class="row">
                        <div id="dt-site-logo" class="col-lg-3 col-md-12 col-sm-12">
                            <div class="dt-logo">
                                <?php
                                if ( function_exists( 'get_custom_logo' ) && has_custom_logo() ) {
                                    the_custom_logo();
                                }
                                if ( display_header_text() ) {
                                    if (is_front_page() && is_home()) {
                                        ?>
                                        <h1 class="transition35 site-title">
                                            <a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a>
                                            <?php
                                            $description = get_bloginfo('description', 'display');
                                            if ($description || is_customize_preview()) : ?>
                                                <span class="site-description"><?php echo $description; ?></span>
                                            <?php endif; ?>
                                        </h1>
                                        <?php
                                    } else {
                                        ?>
                                        <p class="transition35 site-title">
                                            <a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a>
                                            <?php
                                            $description = get_bloginfo('description', 'display');
                                            if ($description || is_customize_preview()) : ?>
                                                <span class="site-description"><?php echo $description; ?></span>
                                            <?php endif; ?>
                                        </p>
                                        <?php
                                    }
                                }
                                ?>
                                <div class="dt-menu-md">
                                    <i class="fa fa-bars"></i>
                                </div>
                            </div><!-- .dt-logo -->
                        </div><!-- .col-lg-3 .col-md-3 -->
                        <?php if ( has_nav_menu( 'primary' ) ) : ?>
                        <div class="dt-main-menu-wrapper col-lg-9 col-md-12 col-sm-12">
                            <nav class="dt-main-menu">
                                <?php
                                wp_nav_menu( array(
                                    'theme_location' => 'primary',
                                    'menu_id' => 'primary-menu',
                                    'container_id' => 'primary-menu-container',
                                    'container_class' => 'primary-menu-container'
                                ) );
                                ?>
                            </nav><!-- .dt-main-menu -->
                        </div><!-- .col-lg-9 .col-md-9 -->
                        <?php endif; ?>
                    </div><!-- .row -->
                </div><!-- .container-wrapper -->
            </div><!-- .container -->
        </div><!-- .dt-main-menu-wrap -->
        <?php if ( get_theme_mod( 'home_featured_posts' ) == '' || ! is_front_page() ) : ?>
            <div class="dt-header-sep"></div>
        <?php endif; ?>
        <?php if( ! is_front_page() && ! is_home() ) : ?>
            <?php if ( function_exists( 'bcn_display' ) ) {  ?>
            <div class="dt-breadcrumbs">
                <div class="container">
                    <div class="row">
                        <div class="col-lg-12 col-md-12">
                            <?php bcn_display(); ?>
                        </div><!-- .col-lg-12 .col-md-12 -->
                    </div><!-- .row-->
                </div><!-- .container-->
            </div><!-- .dt-breadcrumbs-->
            <?php } ?>
        <?php endif; ?>
	</header>