PageRenderTime 39ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/blog/wp-content/themes/twentyeleven/header.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 123 lines | 83 code | 12 blank | 28 comment | 14 complexity | 09c92f9a7b1155b3eeddd30b3ba50710 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.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. <?php
  50. /* We add some JavaScript to pages with the comment form
  51. * to support sites with threaded comments (when in use).
  52. */
  53. if ( is_singular() && get_option( 'thread_comments' ) )
  54. wp_enqueue_script( 'comment-reply' );
  55. /* Always have wp_head() just before the closing </head>
  56. * tag of your theme, or you will break many plugins, which
  57. * generally use this hook to add elements to <head> such
  58. * as styles, scripts, and meta tags.
  59. */
  60. wp_head();
  61. ?>
  62. </head>
  63. <body <?php body_class(); ?>>
  64. <div id="page" class="hfeed">
  65. <header id="branding" role="banner">
  66. <hgroup>
  67. <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>
  68. <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  69. </hgroup>
  70. <?php
  71. // Check to see if the header image has been removed
  72. $header_image = get_header_image();
  73. if ( ! empty( $header_image ) ) :
  74. ?>
  75. <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  76. <?php
  77. // The header image
  78. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  79. if ( is_singular() &&
  80. has_post_thumbnail( $post->ID ) &&
  81. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( HEADER_IMAGE_WIDTH, HEADER_IMAGE_WIDTH ) ) ) &&
  82. $image[1] >= HEADER_IMAGE_WIDTH ) :
  83. // Houston, we have a new header image!
  84. echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  85. else : ?>
  86. <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
  87. <?php endif; // end check for featured image or standard header ?>
  88. </a>
  89. <?php endif; // end check for removed header image ?>
  90. <?php
  91. // Has the text been hidden?
  92. if ( 'blank' == get_header_textcolor() ) :
  93. ?>
  94. <div class="only-search<?php if ( ! empty( $header_image ) ) : ?> with-image<?php endif; ?>">
  95. <?php get_search_form(); ?>
  96. </div>
  97. <?php
  98. else :
  99. ?>
  100. <?php get_search_form(); ?>
  101. <?php endif; ?>
  102. <nav id="access" role="navigation">
  103. <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  104. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  105. <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>
  106. <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>
  107. <?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. */ ?>
  108. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  109. </nav><!-- #access -->
  110. </header><!-- #branding -->
  111. <div id="main">