File: /home/slfopp7cb1df/www/shaneconrad.me/wp-content/themes/doctors-profile/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 Doctors Profile
*/
?>
<!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(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php do_action('doctors_profile_mobile_menu'); ?>
<?php
$doctors_profile_main_menu_style = get_theme_mod('doctors_profile_main_menu_style', 'style1');
?>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e('Skip to content', 'doctors-profile'); ?></a>
<header id="masthead" class="site-header px-h<?php echo esc_attr($doctors_profile_main_menu_style); ?>">
<?php if (has_header_image()) : ?>
<div class="header-img">
<?php the_header_image_tag(); ?>
</div>
<?php endif; ?>
<?php
if ($doctors_profile_main_menu_style == 'style1') {
do_action('doctors_profile_header_style_one');
} else {
do_action('doctors_profile_header_style_two');
}
?>
</header><!-- #masthead -->
<?php
$doctors_profile_intro_show = get_theme_mod('doctors_profile_intro_show', doctors_profile_new_user());
if ($doctors_profile_intro_show && (is_home() || is_front_page())) {
do_action('doctors_profile_profile_intro');
}
?>