2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Header template for our theme
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
2013-09-25 19:04:10 +02:00
|
|
|
* Displays all of the <head> section and everything up till <div id="main">.
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 19:10:21 +02:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 08:36:11 +02:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-30 00:03:15 +02:00
|
|
|
*/
|
2010-05-17 08:36:11 +02:00
|
|
|
?><!DOCTYPE html>
|
2010-02-07 17:16:26 +01:00
|
|
|
<html <?php language_attributes(); ?>>
|
|
|
|
<head>
|
2010-06-10 20:26:53 +02:00
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
2017-12-01 00:11:00 +01:00
|
|
|
<title>
|
|
|
|
<?php
|
2013-03-22 17:15:24 +01:00
|
|
|
/*
|
|
|
|
* Print the <title> tag based on what is being viewed.
|
|
|
|
*/
|
|
|
|
global $page, $paged;
|
|
|
|
|
|
|
|
wp_title( '|', true, 'right' );
|
|
|
|
|
|
|
|
// Add the blog name.
|
|
|
|
bloginfo( 'name' );
|
|
|
|
|
|
|
|
// Add the blog description for the home/front page.
|
|
|
|
$site_description = get_bloginfo( 'description', 'display' );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $site_description && ( is_home() || is_front_page() ) ) {
|
|
|
|
echo " | $site_description";
|
|
|
|
}
|
2013-03-22 17:15:24 +01:00
|
|
|
|
|
|
|
// Add a page number if necessary:
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Page number. */
|
2017-12-01 00:11:00 +01:00
|
|
|
echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) );
|
|
|
|
}
|
2013-03-22 17:15:24 +01:00
|
|
|
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2017-12-01 00:11:00 +01:00
|
|
|
</title>
|
2020-07-04 01:42:01 +02:00
|
|
|
<link rel="profile" href="https://gmpg.org/xfn/11" />
|
2022-10-11 19:05:13 +02:00
|
|
|
<link rel="stylesheet" type="text/css" media="all" href="<?php echo esc_url( get_stylesheet_uri() ); ?>?ver=20221101" />
|
2019-01-09 07:11:51 +01:00
|
|
|
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
|
2010-05-21 20:56:27 +02:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* We add some JavaScript to pages with the comment form
|
2013-03-22 17:15:24 +01:00
|
|
|
* to support sites with threaded comments (when in use).
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_singular() && get_option( 'thread_comments' ) ) {
|
|
|
|
wp_enqueue_script( 'comment-reply' );
|
|
|
|
}
|
2013-03-22 17:15:24 +01:00
|
|
|
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* Always have wp_head() just before the closing </head>
|
2010-05-21 20:56:27 +02:00
|
|
|
* tag of your theme, or you will break many plugins, which
|
|
|
|
* generally use this hook to add elements to <head> such
|
|
|
|
* as styles, scripts, and meta tags.
|
|
|
|
*/
|
|
|
|
wp_head();
|
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body <?php body_class(); ?>>
|
Bundled Theme: trigger a new `wp_body_open` action immediately after the opening `body` tag.
* Enables inserting (asynchronous) JavaScript right after the opening `body` tag.
* Add a `wp_body_open` helper function that triggers the `wp_body_open` action.
* Call `wp_body_open` in core themes immediately after the opening `body` tag.
Props joostdevalk, valendesigns, nacin, saracup, jorbin, mikeschinkel, jonnybojangles, lgedeon, Willscrlt, Denis-de-Bernardy, lexiqueen, sky_76, welcher, westonruter, ramiy, joyously.
Fixes #12563.
Built from https://develop.svn.wordpress.org/trunk@45042
git-svn-id: http://core.svn.wordpress.org/trunk@44851 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-27 22:59:52 +01:00
|
|
|
<?php wp_body_open(); ?>
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="wrapper" class="hfeed">
|
|
|
|
<div id="header">
|
|
|
|
<div id="masthead">
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="branding" role="banner">
|
2010-05-17 08:36:11 +02:00
|
|
|
<?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
|
2010-05-10 08:04:14 +02:00
|
|
|
<<?php echo $heading_tag; ?> id="site-title">
|
|
|
|
<span>
|
2015-01-22 01:42:44 +01:00
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
2010-05-10 08:04:14 +02:00
|
|
|
</span>
|
2010-05-17 08:36:11 +02:00
|
|
|
</<?php echo $heading_tag; ?>>
|
2010-02-14 02:00:22 +01:00
|
|
|
<div id="site-description"><?php bloginfo( 'description' ); ?></div>
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<?php
|
2012-06-04 16:43:19 +02:00
|
|
|
// Compatibility with versions of WordPress prior to 3.4.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( function_exists( 'get_custom_header' ) ) {
|
|
|
|
/*
|
|
|
|
* We need to figure out what the minimum width should be for our featured image.
|
|
|
|
* This result would be the suggested width if the theme were to implement flexible widths.
|
|
|
|
*/
|
|
|
|
$header_image_width = get_theme_support( 'custom-header', 'width' );
|
|
|
|
} else {
|
|
|
|
$header_image_width = HEADER_IMAGE_WIDTH;
|
|
|
|
}
|
2012-06-04 16:43:19 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Check if this is a post or page, if it has a thumbnail, and if it's a big one.
|
2021-02-16 20:28:04 +01:00
|
|
|
$image = false;
|
2019-07-01 10:23:57 +02:00
|
|
|
if ( is_singular() && has_post_thumbnail( $post->ID ) ) {
|
|
|
|
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) );
|
2021-02-16 20:28:04 +01:00
|
|
|
}
|
|
|
|
if ( $image && $image[1] >= $header_image_width ) {
|
|
|
|
// Houston, we have a new header image!
|
|
|
|
echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
|
2019-07-01 10:23:57 +02:00
|
|
|
} else {
|
|
|
|
// Compatibility with versions of WordPress prior to 3.4.
|
|
|
|
if ( function_exists( 'get_custom_header' ) ) {
|
|
|
|
$header_image_width = get_custom_header()->width;
|
|
|
|
$header_image_height = get_custom_header()->height;
|
|
|
|
} else {
|
|
|
|
$header_image_width = HEADER_IMAGE_WIDTH;
|
|
|
|
$header_image_height = HEADER_IMAGE_HEIGHT;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<img src="<?php header_image(); ?>" width="<?php echo esc_attr( $header_image_width ); ?>" height="<?php echo esc_attr( $header_image_height ); ?>" alt="" />
|
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
} // End check for featured image or standard header.
|
2019-07-01 10:23:57 +02:00
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #branding -->
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="access" role="navigation">
|
2020-01-29 01:45:18 +01:00
|
|
|
<?php // Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. ?>
|
2010-02-14 02:00:22 +01:00
|
|
|
<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* Our navigation menu. If one isn't filled out, wp_nav_menu() falls back to wp_page_menu().
|
|
|
|
* The menu assigned to the primary location is the one used.
|
|
|
|
* If one isn't assigned, the menu with the lowest ID is used.
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
wp_nav_menu(
|
|
|
|
array(
|
|
|
|
'container_class' => 'menu-header',
|
|
|
|
'theme_location' => 'primary',
|
|
|
|
)
|
|
|
|
);
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #access -->
|
2010-02-08 19:02:23 +01:00
|
|
|
</div><!-- #masthead -->
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #header -->
|
2010-02-08 19:02:23 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="main">
|