Advertisement
Guest User

header.php

a guest
Mar 7th, 2016
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 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. ?><!DOCTYPE html>
  8. <!--[if IE 7]>
  9. <html class="ie ie7" <?php language_attributes(); ?>>
  10. <![endif]-->
  11. <!--[if IE 8]>
  12. <html class="ie ie8" <?php language_attributes(); ?>>
  13. <![endif]-->
  14. <!--[if !(IE 7) | !(IE 8) ]><!-->
  15. <html <?php language_attributes(); ?>>
  16. <!--<![endif]-->
  17. <head>
  18. <meta charset="<?php bloginfo('charset'); ?>">
  19. <meta name="viewport" content="width=device-width">
  20. <title><?php wp_title('•', true, 'right'); ?></title>
  21. <link rel="profile" href="http://gmpg.org/xfn/11">
  22. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  23. <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.png" />
  24. <!--[if lt IE 9]>
  25. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
  26. <![endif]-->
  27. <?php wp_head(); ?>
  28. </head>
  29.  
  30. <body <?php body_class(); ?>>
  31. <div id="wrapper">
  32. <div id="page" class="hfeed site">
  33. <header id="masthead" class="site-header" role="banner">
  34. <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
  35. <h1 class="menu-toggle">m</h1>
  36. <nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
  37. <a class="screen-reader-text skip-link" href="#content"><?php _e('Skip to content', 'expositio'); ?></a>
  38. <span id="navigation-close">&#10005;</span>
  39. <?php wp_nav_menu(array('theme_location' => 'primary', 'menu_class' => 'nav-menu', 'container_id' => 'top-main-menu', 'fallback_cb' => false)); ?>
  40. <?php wp_nav_menu(array('theme_location' => 'secondary', 'menu_class' => 'nav-menu', 'container_id' => 'top-right-menu', 'fallback_cb' => false)); ?>
  41. </nav>
  42. <footer id="colophon" class="site-footer" role="contentinfo">
  43. <div class="site-info">
  44. <?php printf(__('<a href="%s">%s</a> by <a href="%s">%s</a>', 'expositio'),
  45. 'http://wpshower.com/themes/expositio',
  46. 'Expositio',
  47. 'http://wpshower.com/',
  48. 'Wpshower'
  49. );
  50. ?>
  51. </div><!-- .site-info -->
  52. <div class="copyright">&#169; 2014</div>
  53. </footer><!-- #colophon -->
  54. </header><!-- #masthead -->
  55. <div id="header-helper"></div>
  56.  
  57. <div id="main" class="site-main">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement