[ Root ] [ Search ] [ Index ]

PHP Cross Reference of WordPress 3.0

Provided by Yoast

title

Body

[close]

/wp-content/themes/twentyten/ -> header.php (source)

   1  <?php
   2  /**
   3   * The Header 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><?php
  16      /*
  17       * Print the <title> tag based on what is being viewed.
  18       * We filter the output of wp_title() a bit -- see
  19       * twentyten_filter_wp_title() in functions.php.
  20       */
  21      wp_title( '|', true, 'right' );
  22  
  23      ?></title>
  24  <link rel="profile" href="http://gmpg.org/xfn/11" />
  25  <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  26  <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  27  <?php
  28      /* We add some JavaScript to pages with the comment form
  29       * to support sites with threaded comments (when in use).
  30       */
  31      if ( is_singular() && get_option( 'thread_comments' ) )
  32          wp_enqueue_script( 'comment-reply' );
  33  
  34      /* Always have wp_head() just before the closing </head>
  35       * tag of your theme, or you will break many plugins, which
  36       * generally use this hook to add elements to <head> such
  37       * as styles, scripts, and meta tags.
  38       */
  39      wp_head();
  40  ?>
  41  </head>
  42  
  43  <body <?php body_class(); ?>>
  44  <div id="wrapper" class="hfeed">
  45      <div id="header">
  46          <div id="masthead">
  47              <div id="branding" role="banner">
  48                  <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
  49                  <<?php echo $heading_tag; ?> id="site-title">
  50                      <span>
  51                          <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  52                      </span>
  53                  </<?php echo $heading_tag; ?>>
  54                  <div id="site-description"><?php bloginfo( 'description' ); ?></div>
  55  
  56                  <?php
  57                      // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  58                      if ( is_singular() &&
  59                              has_post_thumbnail( $post->ID ) &&
  60                              ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
  61                              $image[1] >= HEADER_IMAGE_WIDTH ) :
  62                          // Houston, we have a new header image!
  63                          echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  64                      else : ?>
  65                          <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
  66                      <?php endif; ?>
  67              </div><!-- #branding -->
  68  
  69              <div id="access" role="navigation">
  70                <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
  71                  <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>
  72                  <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used.  */ ?>
  73                  <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
  74              </div><!-- #access -->
  75          </div><!-- #masthead -->
  76      </div><!-- #header -->
  77  
  78      <div id="main">


Generated: Thu Oct 14 05:11:12 2010 Cross-referenced by PHPXref 0.7