Guest User

header.php

a guest
Nov 21st, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--[if IE 6]>
  3. <html id="ie6" <?php language_attributes(); ?>>
  4. <![endif]-->
  5. <!--[if IE 7]>
  6. <html id="ie7" <?php language_attributes(); ?>>
  7. <![endif]-->
  8. <!--[if IE 8]>
  9. <html id="ie8" <?php language_attributes(); ?>>
  10. <![endif]-->
  11. <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
  12. <html <?php language_attributes(); ?>>
  13. <!--<![endif]-->
  14. <head>
  15. <meta name="resource-type" content="document" />
  16. <meta http-equiv="author" content="Ashley Michèlle" />
  17. <meta name="copyright" content="Copyright 2011-2013
  18. Bon Bon is property of Ashley Michèlle Klaus Saunders. All Rights Reserved." />
  19. <meta name="title" content="Bon Bon" />
  20. <link rel="image_src" href="http://ohmybonbon.com/screenshot.png" />
  21.  
  22.  
  23. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  24.  
  25. <link rel="stylesheet" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
  26.  
  27. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  28.  
  29. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  30.  
  31. <title><?php
  32.  
  33. bloginfo('name');
  34.  
  35. if (is_home () ) {
  36.  
  37. echo " | "; bloginfo('description');
  38.  
  39. } elseif (is_category() ) {
  40.  
  41. echo " "; single_cat_title();
  42.  
  43. } elseif (is_single() || is_page() ) {
  44.  
  45. echo " | "; single_post_title();
  46.  
  47. } elseif (is_search() ) {
  48.  
  49. echo __(" search results: ",'ohmbb'); echo wp_specialchars($s);
  50.  
  51. } else {
  52.  
  53. echo " "; wp_title('',true);
  54.  
  55. }
  56.  
  57. ?></title>
  58.  
  59.  
  60. <?php wp_head(); ?>
  61.  
  62.  
  63.  
  64. </head><body <?php body_class($class); ?> id="top">
  65.  
  66. <div class="header">
  67. <div class="navigation">
  68. <div class="logo"><a href="<?php echo get_settings('home'); ?>" class="home"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/bonbon19.png" width="243" height="62" alt="Home"></a></div>
  69.  
  70.  
  71.  
  72. <?php
  73. wp_nav_menu( array(
  74. 'theme_location' => 'navmenu'
  75. ) );
  76. ?>
  77.  
  78. <div class="searchtop"><?php get_sidebar('top'); ?></div>
  79.  
  80. </div></div>
  81. <div class="wrapper">
  82.  
  83. <?php if ( is_active_sidebar( 'right' ) ) : ?>
  84. <div class="rightside">
  85. <?php get_sidebar('right'); ?></div>
  86. <?php endif; ?>
  87.  
  88. <div class="content">
Advertisement
Add Comment
Please, Sign In to add comment