[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Header template for our theme 4 * 5 * Displays all of the <head> section and everything up till <div id="main">. 6 * 7 * @package WordPress 8 * @subpackage Twenty_Ten 9 * @since Twenty Ten 1.0 10 */ 11 ?><!DOCTYPE html> 12 <html <?php language_attributes(); ?>> 13 <head> 14 <meta charset="<?php bloginfo( 'charset' ); ?>" /> 15 <title> 16 <?php 17 /* 18 * Print the <title> tag based on what is being viewed. 19 */ 20 global $page, $paged; 21 22 wp_title( '|', true, 'right' ); 23 24 // Add the site name. 25 bloginfo( 'name' ); 26 27 // Add the site description for the home/front page. 28 $site_description = get_bloginfo( 'description', 'display' ); 29 if ( $site_description && ( is_home() || is_front_page() ) ) { 30 echo " | $site_description"; 31 } 32 33 // Add a page number if necessary: 34 if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { 35 /* translators: %s: Page number. */ 36 echo esc_html( ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ) ); 37 } 38 39 ?> 40 </title> 41 <link rel="profile" href="https://gmpg.org/xfn/11" /> 42 <link rel="stylesheet" type="text/css" media="all" href="<?php echo esc_url( get_stylesheet_uri() ); ?>?ver=20241112" /> 43 <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> 44 <?php 45 /* 46 * We add some JavaScript to pages with the comment form 47 * to support sites with threaded comments (when in use). 48 */ 49 if ( is_singular() && get_option( 'thread_comments' ) ) { 50 wp_enqueue_script( 'comment-reply' ); 51 } 52 53 /* 54 * Always have wp_head() just before the closing </head> 55 * tag of your theme, or you will break many plugins, which 56 * generally use this hook to add elements to <head> such 57 * as styles, scripts, and meta tags. 58 */ 59 wp_head(); 60 ?> 61 </head> 62 63 <body <?php body_class(); ?>> 64 <?php wp_body_open(); ?> 65 <div id="wrapper" class="hfeed"> 66 <?php // Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. ?> 67 <a href="#content" class="screen-reader-text skip-link"><?php _e( 'Skip to content', 'twentyten' ); ?></a> 68 <div id="header"> 69 <div id="masthead"> 70 <div id="branding" role="banner"> 71 <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?> 72 <<?php echo $heading_tag; ?> id="site-title"> 73 <span> 74 <?php $is_front = ! is_paged() && ( is_front_page() || ( is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) ); ?> 75 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" <?php echo $is_front ? 'aria-current="page"' : ''; ?>><?php bloginfo( 'name' ); ?></a> 76 </span> 77 </<?php echo $heading_tag; ?>> 78 <div id="site-description"><?php bloginfo( 'description' ); ?></div> 79 80 <?php 81 // Compatibility with versions of WordPress prior to 3.4. 82 if ( function_exists( 'get_custom_header' ) ) { 83 /* 84 * We need to figure out what the minimum width should be for our featured image. 85 * This result would be the suggested width if the theme were to implement flexible widths. 86 */ 87 $header_image_width = get_theme_support( 'custom-header', 'width' ); 88 } else { 89 $header_image_width = HEADER_IMAGE_WIDTH; 90 } 91 92 // Check if this is a post or page, if it has a thumbnail, and if it's a big one. 93 $image = false; 94 if ( is_singular() && has_post_thumbnail( $post->ID ) ) { 95 $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ); 96 } 97 if ( $image && $image[1] >= $header_image_width ) { 98 // Houston, we have a new header image! 99 echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' ); 100 } else { 101 twentyten_header_image(); 102 } // End check for featured image or standard header. 103 ?> 104 </div><!-- #branding --> 105 106 <div id="access" role="navigation"> 107 <?php 108 /* 109 * Our navigation menu. If one isn't filled out, wp_nav_menu() falls back to wp_page_menu(). 110 * The menu assigned to the primary location is the one used. 111 * If one isn't assigned, the menu with the lowest ID is used. 112 */ 113 wp_nav_menu( 114 array( 115 'container_class' => 'menu-header', 116 'theme_location' => 'primary', 117 ) 118 ); 119 ?> 120 </div><!-- #access --> 121 </div><!-- #masthead --> 122 </div><!-- #header --> 123 124 <div id="main">
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Apr 3 08:20:01 2025 | Cross-referenced by PHPXref |