You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
<?php
|
|
/**
|
|
* The Header template for our theme
|
|
*/
|
|
?><!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<link rel="profile" href="http://gmpg.org/xfn/11">
|
|
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
|
|
|
<?php wp_head(); ?>
|
|
<meta name="yandex-verification" content="0e101f682fbb964b" />
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php if ( function_exists( 'wp_body_open' ) ) : ?>
|
|
<?php wp_body_open(); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'woodmart_after_body_open' ); ?>
|
|
|
|
<div class="website-wrapper">
|
|
|
|
<?php if ( woodmart_needs_header() ): ?>
|
|
|
|
<!-- HEADER -->
|
|
<?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'header' ) ) : ?>
|
|
<header <?php woodmart_get_header_classes(); // location: inc/functions.php ?>>
|
|
<?php whb_generate_header(); ?>
|
|
</header><!--END MAIN HEADER-->
|
|
<?php endif ?>
|
|
|
|
<?php woodmart_page_top_part(); ?>
|
|
|
|
<?php endif ?>
|
|
|