PageRenderTime 45ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/public/frontend/wp-content/themes/twentyten/header.php

https://bitbucket.org/floppyxyz/musical
PHP | 108 lines | 68 code | 11 blank | 29 comment | 14 complexity | 1da633291ff4634f4ad3b5f47a647648 MD5 | raw file
Possible License(s): GPL-2.0, AGPL-1.0, LGPL-2.1
  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. */
  19. global $page, $paged;
  20. wp_title( '|', true, 'right' );
  21. // Add the blog name.
  22. bloginfo( 'name' );
  23. // Add the blog description for the home/front page.
  24. $site_description = get_bloginfo( 'description', 'display' );
  25. if ( $site_description && ( is_home() || is_front_page() ) )
  26. echo " | $site_description";
  27. // Add a page number if necessary:
  28. if ( $paged >= 2 || $page >= 2 )
  29. echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
  30. ?></title>
  31. <link rel="profile" href="http://gmpg.org/xfn/11" />
  32. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  33. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  34. <?php
  35. /* We add some JavaScript to pages with the comment form
  36. * to support sites with threaded comments (when in use).
  37. */
  38. if ( is_singular() && get_option( 'thread_comments' ) )
  39. wp_enqueue_script( 'comment-reply' );
  40. /* Always have wp_head() just before the closing </head>
  41. * tag of your theme, or you will break many plugins, which
  42. * generally use this hook to add elements to <head> such
  43. * as styles, scripts, and meta tags.
  44. */
  45. wp_head();
  46. ?>
  47. </head>
  48. <body <?php body_class(); ?>>
  49. <div id="wrapper" class="hfeed">
  50. <div id="header">
  51. <div id="masthead">
  52. <div id="branding" role="banner">
  53. <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
  54. <<?php echo $heading_tag; ?> id="site-title">
  55. <span>
  56. <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  57. </span>
  58. </<?php echo $heading_tag; ?>>
  59. <div id="site-description"><?php bloginfo( 'description' ); ?></div>
  60. <?php
  61. // Compatibility with versions of WordPress prior to 3.4.
  62. if ( function_exists( 'get_custom_header' ) ) {
  63. // We need to figure out what the minimum width should be for our featured image.
  64. // This result would be the suggested width if the theme were to implement flexible widths.
  65. $header_image_width = get_theme_support( 'custom-header', 'width' );
  66. } else {
  67. $header_image_width = HEADER_IMAGE_WIDTH;
  68. }
  69. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  70. if ( is_singular() && current_theme_supports( 'post-thumbnails' ) &&
  71. has_post_thumbnail( $post->ID ) &&
  72. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
  73. $image[1] >= $header_image_width ) :
  74. // Houston, we have a new header image!
  75. echo get_the_post_thumbnail( $post->ID );
  76. elseif ( get_header_image() ) :
  77. // Compatibility with versions of WordPress prior to 3.4.
  78. if ( function_exists( 'get_custom_header' ) ) {
  79. $header_image_width = get_custom_header()->width;
  80. $header_image_height = get_custom_header()->height;
  81. } else {
  82. $header_image_width = HEADER_IMAGE_WIDTH;
  83. $header_image_height = HEADER_IMAGE_HEIGHT;
  84. }
  85. ?>
  86. <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
  87. <?php endif; ?>
  88. </div><!-- #branding -->
  89. <div id="access" role="navigation">
  90. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
  91. <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>
  92. <?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. */ ?>
  93. <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
  94. </div><!-- #access -->
  95. </div><!-- #masthead -->
  96. </div><!-- #header -->
  97. <div id="main">