PageRenderTime 70ms CodeModel.GetById 43ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/floppyxyz/musical
PHP | 177 lines | 121 code | 21 blank | 35 comment | 20 complexity | 87d6a7aed53d576f63af9888615384bf 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_Eleven
  9. * @since Twenty Eleven 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 6]>
  13. <html id="ie6" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 7]>
  16. <html id="ie7" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if IE 8]>
  19. <html id="ie8" <?php language_attributes(); ?>>
  20. <![endif]-->
  21. <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
  22. <html <?php language_attributes(); ?>>
  23. <!--<![endif]-->
  24. <head>
  25. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  26. <meta name="viewport" content="width=device-width" />
  27. <title><?php
  28. /*
  29. * Print the <title> tag based on what is being viewed.
  30. */
  31. global $page, $paged;
  32. wp_title( '|', true, 'right' );
  33. // Add the blog name.
  34. bloginfo( 'name' );
  35. // Add the blog description for the home/front page.
  36. $site_description = get_bloginfo( 'description', 'display' );
  37. if ( $site_description && ( is_home() || is_front_page() ) )
  38. echo " | $site_description";
  39. // Add a page number if necessary:
  40. if ( $paged >= 2 || $page >= 2 )
  41. echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
  42. ?></title>
  43. <link rel="profile" href="http://gmpg.org/xfn/11" />
  44. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  45. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  46. <!--[if lt IE 9]>
  47. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  48. <![endif]-->
  49. <script type='text/javascript'>
  50. function setIframeHeight( iframeId ) /** IMPORTANT: All framed documents *must* have a DOCTYPE applied **/
  51. {
  52. var ifDoc, ifRef = document.getElementById( iframeId );
  53. try
  54. {
  55. ifDoc = ifRef.contentWindow.document.documentElement;
  56. }
  57. catch( e )
  58. {
  59. try
  60. {
  61. ifDoc = ifRef.contentDocument.documentElement;
  62. }
  63. catch(ee)
  64. {
  65. }
  66. }
  67. if( ifDoc )
  68. {
  69. ifRef.height = 1;
  70. ifRef.height = ifDoc.scrollHeight;
  71. /* For width resize, enable below. */
  72. // ifRef.width = 1;
  73. // ifRef.width = ifDoc.scrollWidth;
  74. }
  75. }
  76. var interval = setInterval("setIframeHeight(asdf)",500);
  77. </script>
  78. <?php
  79. /* We add some JavaScript to pages with the comment form
  80. * to support sites with threaded comments (when in use).
  81. */
  82. if ( is_singular() && get_option( 'thread_comments' ) )
  83. wp_enqueue_script( 'comment-reply' );
  84. /* Always have wp_head() just before the closing </head>
  85. * tag of your theme, or you will break many plugins, which
  86. * generally use this hook to add elements to <head> such
  87. * as styles, scripts, and meta tags.
  88. */
  89. wp_head();
  90. ?>
  91. </head>
  92. <body <?php body_class(); ?>>
  93. <div id="page" class="hfeed">
  94. <header id="branding" role="banner">
  95. <hgroup>
  96. <h1 id="site-title"><span><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
  97. <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  98. </hgroup>
  99. <?php
  100. // Check to see if the header image has been removed
  101. $header_image = get_header_image();
  102. if ( $header_image ) :
  103. // Compatibility with versions of WordPress prior to 3.4.
  104. if ( function_exists( 'get_custom_header' ) ) {
  105. // We need to figure out what the minimum width should be for our featured image.
  106. // This result would be the suggested width if the theme were to implement flexible widths.
  107. $header_image_width = get_theme_support( 'custom-header', 'width' );
  108. } else {
  109. $header_image_width = HEADER_IMAGE_WIDTH;
  110. }
  111. ?>
  112. <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  113. <?php
  114. // The header image
  115. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  116. if ( is_singular() && has_post_thumbnail( $post->ID ) &&
  117. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( $header_image_width, $header_image_width ) ) ) &&
  118. $image[1] >= $header_image_width ) :
  119. // Houston, we have a new header image!
  120. echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  121. else :
  122. // Compatibility with versions of WordPress prior to 3.4.
  123. if ( function_exists( 'get_custom_header' ) ) {
  124. $header_image_width = get_custom_header()->width;
  125. $header_image_height = get_custom_header()->height;
  126. } else {
  127. $header_image_width = HEADER_IMAGE_WIDTH;
  128. $header_image_height = HEADER_IMAGE_HEIGHT;
  129. }
  130. ?>
  131. <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
  132. <?php endif; // end check for featured image or standard header ?>
  133. </a>
  134. <?php endif; // end check for removed header image ?>
  135. <?php
  136. // Has the text been hidden?
  137. if ( 'blank' == get_header_textcolor() ) :
  138. ?>
  139. <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>">
  140. <?php get_search_form(); ?>
  141. </div>
  142. <?php
  143. else :
  144. ?>
  145. <?php get_search_form(); ?>
  146. <?php endif; ?>
  147. <nav id="access" role="navigation">
  148. <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  149. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  150. <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>
  151. <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>
  152. <?php /* 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. */ ?>
  153. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  154. </nav><!-- #access -->
  155. </header><!-- #branding -->
  156. <div id="main">