Make WordPress Themes

source: ultimate-ecommerce-shop/0.3.5/header.php

Last change on this file was 129500, checked in by themedropbox, 6 years ago

New version of Ultimate Ecommerce Shop - 0.3.5

File size: 913 bytes
Line 
1<?php
2/**
3 * Display Header.
4 * @package Ultimate Ecommerce Shop
5 */
6?>
7<!DOCTYPE html>
8<html <?php language_attributes(); ?>>
9<head>
10  <meta charset="<?php bloginfo( 'charset' ); ?>">
11  <meta name="viewport" content="width=device-width">
12  <link rel="profile" href="<?php echo esc_url( __( 'http://gmpg.org/xfn/11', 'ultimate-ecommerce-shop' ) ); ?>">
13  <?php wp_head(); ?>
14</head>
15<body <?php body_class(); ?>>
16        <?php if ( function_exists( 'wp_body_open' ) ) {
17            wp_body_open();
18        } else {
19            do_action( 'wp_body_open' );
20        }?>
21        <header role="banner">
22                <a class="screen-reader-text skip-link" href="#main"><?php esc_html_e( 'Skip to content', 'ultimate-ecommerce-shop' ); ?></a>
23                <?php
24                  get_template_part( 'template-parts/header/top', 'bar' );
25
26                  get_template_part( 'template-parts/header/site', 'branding' );
27                 
28                  get_template_part( 'template-parts/navigation/site', 'nav' );
29                 
30                ?>
31        </header>
Note: See TracBrowser for help on using the repository browser.