mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-01 08:41:18 +03:00
23 lines
697 B
PHP
23 lines
697 B
PHP
<?php
|
|
/**
|
|
* The Header template for our theme.
|
|
*
|
|
* Displays all of the <head> section and everything up till <div id="content">
|
|
*
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* @package WordPressdotorg\Theme
|
|
*/
|
|
|
|
namespace WordPressdotorg\Theme;
|
|
|
|
global $wporg_global_header_options;
|
|
if ( !isset( $wporg_global_header_options['in_wrapper'] ) )
|
|
$wporg_global_header_options['in_wrapper'] = '';
|
|
$wporg_global_header_options['in_wrapper'] .= '<a class="skip-link screen-reader-text" href="#content">' . esc_html__( 'Skip to content', 'wporg' ) . '</a>';
|
|
|
|
get_template_part( 'header', 'wporg' );
|
|
?>
|
|
<div id="page" class="site">
|
|
<div id="content" class="site-content row gutters">
|