Advertisement
Guest User

2uhphotos

a guest
Jan 19th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.72 KB | None | 0 0
  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. ?>
  12.  
  13. <!DOCTYPE html>
  14. <!--[if IE 6]>
  15. <html id="ie6" <?php language_attributes(); ?>>
  16. <![endif]-->
  17. <!--[if IE 7]>
  18. <html id="ie7" <?php language_attributes(); ?>>
  19. <![endif]-->
  20. <!--[if IE 8]>
  21. <html id="ie8" <?php language_attributes(); ?>>
  22. <![endif]-->
  23. <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
  24. <html <?php language_attributes(); ?>>
  25. <!--<![endif]-->
  26. <head>
  27. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  28. <meta name="viewport" content="width=device-width" />
  29. <title><?php
  30. /*
  31. * Print the <title> tag based on what is being viewed.
  32. */
  33. global $page, $paged;
  34.  
  35. wp_title( '|', true, 'right' );
  36.  
  37. // Add the blog name.
  38. bloginfo( 'name' );
  39.  
  40. // Add the blog description for the home/front page.
  41. $site_description = get_bloginfo( 'description', 'display' );
  42. if ( $site_description && ( is_home() || is_front_page() ) )
  43. echo " | $site_description";
  44.  
  45. // Add a page number if necessary:
  46. if ( $paged >= 2 || $page >= 2 )
  47. echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
  48.  
  49. ?></title>
  50. <link rel="profile" href="http://gmpg.org/xfn/11" />
  51. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  52. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  53. <!--[if lt IE 9]>
  54. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  55. <![endif]-->
  56. <?php
  57. /* We add some JavaScript to pages with the comment form
  58. * to support sites with threaded comments (when in use).
  59. */
  60. if ( is_singular() && get_option( 'thread_comments' ) )
  61. wp_enqueue_script( 'comment-reply' );
  62.  
  63. /* Always have wp_head() just before the closing </head>
  64. * tag of your theme, or you will break many plugins, which
  65. * generally use this hook to add elements to <head> such
  66. * as styles, scripts, and meta tags.
  67. */
  68. wp_head();
  69. ?>
  70.  
  71.  
  72. <?php
  73. // added by Hanne (maybe not necessary, so took it away again):
  74. // wp_reset_query();
  75.  
  76.  
  77. ?>
  78.  
  79. </head>
  80.  
  81. <body <?php body_class(); ?>>
  82. <div id="page" class="hfeed">
  83. <header id="branding" role="banner">
  84. <hgroup>
  85. <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>
  86. <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  87. </hgroup>
  88.  
  89. <?php
  90. if( !is_page('photos' ) : // check for photos page
  91. // Check to see if the header image has been removed
  92. $header_image = get_header_image();
  93. if ( ! empty( $header_image ) ) :
  94. ?>
  95. <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  96. <?php
  97. // The header image
  98. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  99. if ( is_singular() &&
  100. has_post_thumbnail( $post->ID ) &&
  101. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( HEADER_IMAGE_WIDTH, HEADER_IMAGE_WIDTH ) ) ) &&
  102. $image[1] >= HEADER_IMAGE_WIDTH ) :
  103. // Houston, we have a new header image!
  104. echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  105. else : ?>
  106. <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
  107. <?php endif; // end check for featured image or standard header ?>
  108. </a>
  109. <?php endif; // end check for removed header image ?>
  110. <?php endif; // end check for photos page ?> <?php
  111. // Has the text been hidden?
  112. if ( 'blank' == get_header_textcolor() ) :
  113. ?>
  114. <div class="only-search<?php if ( ! empty( $header_image ) ) : ?> with-image<?php endif; ?>">
  115. <?php get_search_form(); ?>
  116. </div>
  117. <?php
  118. else :
  119. ?>
  120.  
  121. <?php get_search_form(); ?>
  122. <?php endif; ?>
  123.  
  124. <nav id="access" role="navigation">
  125. <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  126. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  127. <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>
  128. <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>
  129. <?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. */ ?>
  130. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  131. </nav><!-- #access -->
  132. </header><!-- #branding -->
  133.  
  134.  
  135. <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement