| Server IP : 217.160.0.244 / Your IP : 216.73.216.25 Web Server : Apache System : Linux infong-eu155 4.4.400-icpu-108 #2 SMP Wed Feb 11 11:51:01 UTC 2026 x86_64 User : u100174116 ( 6746176) PHP Version : 8.5.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/13/d818981593/htdocs/GutTrechow/wp-content/themes/genesis/ |
Upload File : |
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Templates
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://my.studiopress.com/themes/genesis/
*/
/**
* Fires at start of header.php, immediately before `genesis_title` action hook to render the Doctype content.
*
* @since 1.3.0
*/
do_action( 'genesis_doctype' );
/**
* Fires immediately after `genesis_doctype` action hook, in header.php to render the document title.
*
* @since 1.0.0
*/
do_action( 'genesis_title' );
/**
* Fires immediately after `genesis_title` action hook, in header.php to render the meta elements.
*
* @since 1.0.0
*/
do_action( 'genesis_meta' );
wp_head(); // We need this for plugins.
?>
</head>
<?php
genesis_markup(
[
'open' => '<body %s>',
'context' => 'body',
]
);
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}
/**
* Fires immediately after the `wp_body_open` action hook.
*
* @since 1.0.0
*/
do_action( 'genesis_before' );
genesis_markup(
[
'open' => '<div %s>',
'context' => 'site-container',
]
);
/**
* Fires immediately after the site container opening markup, before `genesis_header` action hook.
*
* @since 1.0.0
*/
do_action( 'genesis_before_header' );
/**
* Fires to display the main header content.
*
* @since 1.0.2
*/
do_action( 'genesis_header' );
/**
* Fires immediately after the `genesis_header` action hook, before the site inner opening markup.
*
* @since 1.0.0
*/
do_action( 'genesis_after_header' );
genesis_markup(
[
'open' => '<div %s>',
'context' => 'site-inner',
]
);
genesis_structural_wrap( 'site-inner' );