Advertisement
Guest User

Untitled

a guest
Feb 16th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 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="primary">
  6. *
  7. * @package Catch Themes
  8. * @subpackage Simple_Catch_Pro
  9. * @since Simple Catch Pro 1.0
  10. */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 6]>
  13. <html id="ie6" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 7]>
  16. <html id="ie7" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if IE 8]>
  19. <html id="ie8" <?php language_attributes(); ?>>
  20. <![endif]-->
  21. <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
  22. <html <?php language_attributes(); ?>>
  23. <!--<![endif]-->
  24. <head>
  25. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  26. <title><?php wp_title( '|', true, 'right' ); ?></title>
  27. <link rel="profile" href="http://gmpg.org/xfn/11" />
  28. <link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_uri(); ?>" />
  29. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  30. <?php
  31. /**
  32. * Always have wp_head() just before the closing </head>
  33. * tag of your theme, or you will break many plugins, which
  34. * generally use this hook to add elements to <head> such
  35. * as styles, scripts, and meta tags.
  36. */
  37. wp_head();
  38. ?>
  39. </head>
  40. <body <?php body_class(); ?>>
  41.  
  42. <?php
  43. /**
  44. * simplecatch_before hook
  45. */
  46. do_action( 'simplecatch_before' );
  47. ?>
  48.  
  49. <?php do_action( 'simplecatch_before_header' ); ?>
  50.  
  51. <header id="branding">
  52.  
  53. <div class="top-bg"></div>
  54.  
  55. <div class="wrapper clearfix">
  56. <?php
  57. /**
  58. * simplecatch_before_headercontent hook
  59. */
  60. do_action( 'simplecatch_before_headercontent' );
  61. ?>
  62.  
  63. <div id="header-content" class="clearfix">
  64. <?php
  65. /**
  66. * simplecatch_before_sidebartop hook
  67. *
  68. * @hooked simplecatch_headerdetails - 10
  69. */
  70. do_action( 'simplecatch_before_sidebartop' );
  71. ?>
  72.  
  73. <div id="sidebar-top" class="clearfix">
  74. <?php
  75. /**
  76. * simplecatch_sidebartop hook
  77. *
  78. * @hooked simplecatch_headersocialnetworks - 10
  79. * @hooked get_search_form - 15
  80. */
  81. do_action( 'simplecatch_sidebartop' );
  82. ?>
  83.  
  84. </div> <!-- #sidebar-top -->
  85. <?php
  86. /**
  87. * simplecatch_after_sidebartop hook
  88. */
  89. do_action( 'simplecatch_after_sidebartop' );
  90. ?>
  91.  
  92. </div> <!-- #header-content -->
  93.  
  94. <?php
  95. /**
  96. * simplecatch_after_headercontent hook
  97. *
  98. * @hooked simplecatch_menu - 10
  99. * @hooked simplecatch_slider_display - 15
  100. * @hooked simplecatch_breadcrumb_display - 20
  101. */
  102. do_action( 'simplecatch_after_headercontent' );
  103. ?>
  104.  
  105. </div><!-- .wrapper-->
  106.  
  107. </header><!-- #branding -->
  108.  
  109. <?php do_action( 'simplecatch_after_header' ); ?>
  110.  
  111. <?php
  112. /**
  113. * simplecatch_before_main hook
  114. */
  115. do_action( 'simplecatch_before_main' );
  116. ?>
  117.  
  118. <div id="main" class="wrapper clearfix">
  119.  
  120. <?php
  121. /**
  122. * simplecatch_above_primary hook
  123. */
  124. do_action( 'simplecatch_above_primary' );
  125. ?>
  126.  
  127. <div id="primary">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement