PageRenderTime 46ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 96 lines | 61 code | 10 blank | 25 comment | 9 complexity | 89128214eb34ab0b0a642798062aaffc 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="content-box">
  6. *
  7. * @package WordPress
  8. * @subpackage Pilcrow
  9. * @since Pilcrow 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 7]>
  13. <html id="ie7" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if (gt IE 7) | (!IE)]><!-->
  16. <html <?php language_attributes(); ?>>
  17. <!--<![endif]-->
  18. <head>
  19. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  20. <title><?php
  21. /*
  22. * Print the <title> tag based on what is being viewed.
  23. */
  24. global $page, $paged;
  25. wp_title( '|', true, 'right' );
  26. // Add the blog name.
  27. bloginfo( 'name' );
  28. // Add the blog description for the home/front page.
  29. $site_description = get_bloginfo( 'description', 'display' );
  30. if ( $site_description && ( is_home() || is_front_page() ) )
  31. echo " | $site_description";
  32. // Add a page number if necessary:
  33. if ( $paged >= 2 || $page >= 2 )
  34. echo ' | ' . sprintf( __( 'Page %s', 'pilcrow' ), max( $paged, $page ) );
  35. ?></title>
  36. <link rel="profile" href="http://gmpg.org/xfn/11" />
  37. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  38. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  39. <?php
  40. /* We add some JavaScript to pages with the comment form
  41. * to support sites with threaded comments (when in use).
  42. */
  43. if ( is_singular() && get_option( 'thread_comments' ) )
  44. wp_enqueue_script( 'comment-reply' );
  45. /* Always have wp_head() just before the closing </head>
  46. * tag of your theme, or you will break many plugins, which
  47. * generally use this hook to add elements to <head> such
  48. * as styles, scripts, and meta tags.
  49. */
  50. wp_head();
  51. ?>
  52. </head>
  53. <body <?php body_class(); ?>>
  54. <?php do_action( 'pilcrow_before' ); ?>
  55. <div id="container" class="hfeed">
  56. <div id="page" class="blog">
  57. <div id="header">
  58. <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
  59. <<?php echo $heading_tag; ?> id="site-title">
  60. <span>
  61. <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  62. </span>
  63. </<?php echo $heading_tag; ?>>
  64. <div id="nav" role="navigation">
  65. <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
  66. <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'pilcrow' ); ?>"><?php _e( 'Skip to content', 'pilcrow' ); ?></a></div>
  67. <?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. */ ?>
  68. <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
  69. </div><!-- #nav -->
  70. <div id="pic">
  71. <a href="<?php echo home_url( '/' ); ?>" rel="home">
  72. <?php
  73. // Check if this is a post or page, if it has a thumbnail, and if it's a big one
  74. if ( is_singular() &&
  75. has_post_thumbnail( $post->ID ) &&
  76. ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) &&
  77. $image[1] >= HEADER_IMAGE_WIDTH ) :
  78. // Houston, we have a new header image!
  79. echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
  80. elseif ( get_header_image() ) : ?>
  81. <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
  82. <?php endif; ?>
  83. </a>
  84. </div><!-- #pic -->
  85. </div><!-- #header -->
  86. <div id="content-box">