Advertisement
AAShepAA

Myriad header.php

Jul 3rd, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <?php
  2. /**
  3. * Header Template
  4. *
  5. * @package Mysitemyway
  6. * @subpackage Template
  7. */
  8. ?><!DOCTYPE html>
  9. <!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7" <?php language_attributes(); ?>> <![endif]-->
  10. <!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7" <?php language_attributes(); ?>> <![endif]-->
  11. <!--[if IE 8]> <html class="ie ie8 lte9 lte8" <?php language_attributes(); ?>> <![endif]-->
  12. <!--[if IE 9]> <html class="ie ie9 lte9" <?php language_attributes(); ?>> <![endif]-->
  13. <!--[if gt IE 9]> <html> <![endif]-->
  14. <!--[if !IE]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->
  15. <head>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  17. <title><?php mysite_document_title(); ?></title>
  18. <link rel="profile" href="http://gmpg.org/xfn/11" />
  19. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  20. <?php mysite_head(); ?>
  21. <?php wp_head(); ?>
  22. </head>
  23.  
  24. <body class="<?php mysite_body_class(); ?>">
  25. <div class="multibg"><div class="multibg"></div></div>
  26. <div id="body_inner">
  27.  
  28. <?php mysite_before_header();
  29.  
  30. ?><div id="header">
  31. <div id="header_inner">
  32.  
  33. <?php mysite_header();
  34.  
  35. ?></div><!-- #header_inner -->
  36. </div><!-- #header -->
  37.  
  38. <?php mysite_after_header();
  39.  
  40. ?><div id="content">
  41. <div id="content_inner">
  42.  
  43. <?php mysite_before_main();
  44.  
  45. ?><div id="main">
  46. <div id="main_inner">
  47. <?php mysite_before_page_content(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement