Advertisement
Guest User

header.php

a guest
Nov 1st, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="<?php bloginfo('charset'); ?>" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title><?php wp_title(); ?></title>
  7. <link rel="profile" href="http://gmpg.org/xfn/11" />
  8. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  9. <!--[if lt IE 9]>
  10. <script src="<?php echo get_template_directory_uri(); ?>/scripts/html5.js" type="text/javascript"></script>
  11. <![endif]-->
  12. <?php wp_head(); ?>
  13. </head>
  14.  
  15. <body <?php body_class() ?>>
  16. <div id="wrapper">
  17. <header id="header">
  18. <<?php esplanade_title_tag( 'site' ); ?> id="site-title"><a href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></<?php esplanade_title_tag( 'site' ); ?>>
  19. <?php if( ! is_active_sidebar( 1 ) ) : ?>
  20. <<?php esplanade_title_tag( 'desc' ); ?> id="site-description"><?php bloginfo( 'description' ); ?></<?php esplanade_title_tag( 'desc' ); ?>>
  21. <?php endif; ?>
  22. <?php get_sidebar( 'header' ); ?>
  23. <div class="clear"></div>
  24. <?php if ( ( '' != get_header_image() ) || ( false != get_header_image() ) ) : ?>
  25. <a href="<?php echo home_url( '/' ); ?>" rel="home">
  26. <img id="header-image" src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" />
  27. </a>
  28. <?php endif; ?>
  29. <nav id="access">
  30. <a class="nav-toggle" href="#">Navigation</a>
  31. <?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?>
  32. <?php get_search_form(); ?>
  33. <div class="clear"></div>
  34. </nav><!-- #access -->
  35. </header><!-- #header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement