Advertisement
SRD75

child theme header.php

Oct 16th, 2014
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.75 KB | None | 0 0
  1. <?php/** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="main"> * * @package WordPress * @subpackage Twenty_Twelve * @since Twenty Twelve 1.0 */?>
  2. <!DOCTYPE html><!--[if IE 7]><html class="ie ie7" <?php language_attributes(); ?>><![endif]--><!--[if IE 8]><html class="ie ie8" <?php language_attributes(); ?>><![endif]--><!--[if !(IE 7) | !(IE 8)  ]><!-->
  3. <html <?php language_attributes(); ?>>
  4. <!--<![endif]-->
  5. <head>
  6. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  7. <meta name="viewport" content="width=device-width" />
  8. <title>
  9. <?php wp_title( '|', true, 'right' ); ?>
  10. </title>
  11. <link rel="profile" href="http://gmpg.org/xfn/11" />
  12. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  13. <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
  14. <!--[if lt IE 9]><script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script><![endif]-->
  15. <?php wp_head(); ?>
  16. <script type="text/javascript">
  17.  
  18.   var _gaq = _gaq || [];
  19.   _gaq.push(['_setAccount', 'UA-256457-77']);
  20.   _gaq.push(['_trackPageview']);
  21.  
  22.   (function() {
  23.     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  24.     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  25.     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  26.   })();
  27.  
  28. </script>
  29. </head>
  30. <body <?php body_class(); ?>>
  31. <div id="page" class="hfeed site">
  32. <header id="masthead" class="site-header" role="banner">
  33.   <?php $header_image = get_header_image();     if ( ! empty( $header_image ) ) : ?>
  34.   <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /></a>
  35.   <?php endif; ?>
  36.   <nav id="site-navigation" class="main-navigation" role="navigation">
  37.     <h3 class="menu-toggle">
  38.       <?php _e( 'Menu', 'twentytwelve' ); ?>
  39.     </h3>
  40.     <a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?>">
  41.     <?php _e( 'Skip to content', 'twentytwelve' ); ?>
  42.     </a>
  43.     <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
  44.   </nav>
  45.   <!-- #site-navigation --> <!--<hgroup>            <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>            <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>       </hgroup>--> </header>
  46. <!-- #masthead -->
  47. <div id="main" class="wrapper">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement