Nessuna descrizione

header.php 778B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package XShop
  10. */
  11. ?>
  12. <!doctype html>
  13. <html <?php language_attributes(); ?>>
  14. <head>
  15. <meta charset="<?php bloginfo( 'charset' ); ?>">
  16. <meta name="viewport" content="width=device-width, initial-scale=1">
  17. <link rel="profile" href="https://gmpg.org/xfn/11">
  18. <?php wp_head(); ?>
  19. </head>
  20. <body <?php body_class(); ?>>
  21. <?php wp_body_open(); ?>
  22. <div id="page" class="site">
  23. <a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'xshop-lite' ); ?></a>
  24. <?php do_action('xshop_lite_header'); ?>