File: /home4/cca63905/.trash/wp-content/themes/accesspress-store/header.php
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package AccessPress Store
*/
?><!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(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}?>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'accesspress-store' ); ?></a>
<?php
$header_layout = esc_attr( get_theme_mod( 'accesspress_header_layout_type', 'headertwo' ) );
if( $header_layout == 'headerone' ){
get_template_part('header/header', 'one');
}else{
get_template_part('header/header', 'two');
}
?>
<div id="content" class="site-content">