Advertisement
alchymyth

edited header.php twenty eleven

Aug 20th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.45 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. ?><!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.  
  26. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  27.  
  28. <title><?php
  29. /*
  30. * Print the <title> tag based on what is being viewed.
  31. */
  32. global $page, $paged;
  33.  
  34. wp_title( '|', true, 'right' );
  35.  
  36. // Add the blog name.
  37. bloginfo( 'name' );
  38.  
  39. // Add the blog description for the home/front page.
  40. $site_description = get_bloginfo( 'description', 'display' );
  41. if ( $site_description && ( is_home() || is_front_page() ) )
  42. echo " | $site_description";
  43.  
  44. // Add a page number if necessary:
  45. if ( $paged >= 2 || $page >= 2 )
  46. echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
  47.  
  48. ?></title>
  49. <link rel="profile" href="http://gmpg.org/xfn/11" />
  50. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  51. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  52. <!--[if lt IE 9]>
  53. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  54. <![endif]-->
  55. <?php
  56. /* We add some JavaScript to pages with the comment form
  57. * to support sites with threaded comments (when in use).
  58. */
  59. if ( is_singular() && get_option( 'thread_comments' ) )
  60. wp_enqueue_script( 'comment-reply' );
  61.  
  62. /* Always have wp_head() just before the closing </head>
  63. * tag of your theme, or you will break many plugins, which
  64. * generally use this hook to add elements to <head> such
  65. * as styles, scripts, and meta tags.
  66. */
  67. wp_head();
  68. ?>
  69. </head>
  70.  
  71.  
  72.  
  73. <body <?php body_class(); ?>>
  74.  
  75.  
  76.  
  77. <div id="page" class="hfeed">
  78.  
  79. <div id="header_complete">
  80.  
  81.  
  82.  
  83.  
  84. <header id="branding" role="banner">
  85. <hgroup>
  86. <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>
  87. <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  88. </hgroup>
  89.  
  90.  
  91.  
  92.  
  93. <?php
  94. // Has the text been hidden?
  95. if ( 'blank' == get_header_textcolor() ) :
  96. ?>
  97. <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>">
  98. <?php get_search_form(); ?>
  99. </div>
  100. <?php
  101. else :
  102. ?>
  103.  
  104. <?php endif; ?>
  105.  
  106. <center><p>
  107. <div id="press">
  108. <a class="header_links" href="http://jenesequa.com/press" target="_blank">PRESS</a>
  109. </div>
  110. <div id="contact">
  111. <a class="header_links" href="http://jenesequa.com/contact" target="_blank">CONTACT</a>
  112. </div>
  113. <div id="about">
  114. <a class="header_links" href="http://jenesequa.com/about" target="_blank">ABOUT</a>
  115. </div>
  116. </p></center>
  117.  
  118. <div id="header_control">
  119.  
  120.  
  121. <?php
  122. // Check to see if the header image has been removed
  123. $header_image = get_header_image();
  124. if ( $header_image ) :
  125. // Compatibility with versions of WordPress prior to 3.4.
  126. if ( function_exists( 'get_custom_header' ) ) {
  127. // We need to figure out what the minimum width should be for our featured image.
  128. // This result would be the suggested width if the theme were to implement flexible widths.
  129. $header_image_width = get_theme_support( 'custom-header', 'width' );
  130. } else {
  131. $header_image_width = HEADER_IMAGE_WIDTH;
  132. }
  133. ?>
  134. <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  135. <?php
  136.  
  137. // Compatibility with versions of WordPress prior to 3.4.
  138. if ( function_exists( 'get_custom_header' ) ) {
  139. $header_image_width = get_custom_header()->width;
  140. $header_image_height = get_custom_header()->height;
  141. } else {
  142. $header_image_width = HEADER_IMAGE_WIDTH;
  143. $header_image_height = HEADER_IMAGE_HEIGHT;
  144. }
  145. ?>
  146. <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" />
  147.  
  148. </a>
  149.  
  150. <?php endif; // end check for removed header image ?>
  151.  
  152.  
  153.  
  154. </div>
  155. </div>
  156. </header>
  157.  
  158. <div id="nav">
  159.  
  160. <nav id="access" role="navigation">
  161. <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
  162. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
  163. <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>
  164. <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>
  165. <?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. */ ?>
  166. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  167. </nav>
  168. </div>
  169. <!-- #access -->
  170. <!-- #branding -->
  171.  
  172.  
  173. <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement