Advertisement
Guest User

wp-clear header.php

a guest
May 21st, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.  
  5. <head profile="http://gmpg.org/xfn/11">
  6.  
  7. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  8.  
  9. <title><?php wp_title(' '); ?> <?php if(wp_title(' ', false)) { echo ' : '; } ?><?php bloginfo('name'); ?></title>
  10.  
  11. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  12.  
  13. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style-font.css" type="text/css" media="screen" />
  14.  
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  16.  
  17. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  18.  
  19. <!--[if lt IE 9]>
  20. <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
  21. <![endif]-->
  22. <script language="Javascript">
  23. <!--
  24. var axel = Math.random() + "";
  25. var ord = axel * 1000000000000000000;
  26. //-->
  27. </script>
  28. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  29.  
  30. <?php wp_head(); ?>
  31.  
  32. </head>
  33.  
  34. <body <?php body_class(); ?>>
  35.  
  36. <div class="outer-wrap">
  37.  
  38. <div id="topnav">
  39. <div class="limit clearfix">
  40. <?php if (function_exists('wp_nav_menu')) { ?>
  41. <ul class="clearfix">
  42.  
  43. <?php wp_nav_menu(array('container'=>false,'theme_location'=>'topnav','fallback_cb'=>'nav_fallback','items_wrap'=>'%3$s')); ?>
  44. <li class="rss-comments"><a title="<?php _e("Comments RSS Feed", "solostream"); ?>" href="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></li>
  45. <li class="rss-content"><a title="<?php _e("Posts RSS Feed", "solostream"); ?>" href="<?php bloginfo('rss2_url'); ?>">Posts</a></li>
  46. </ul>
  47. <?php } else { ?>
  48. <ul>
  49. <li id="home"<?php if (is_front_page()) { echo " class=\"current_page_item\""; } ?>><a href="<?php bloginfo('url'); ?>"><?php _e("Home", "solostream"); ?></a></li>
  50. <?php wp_list_pages('title_li='); ?>
  51. </ul>
  52. <?php } ?>
  53. </div>
  54. </div>
  55.  
  56. <div id="wrap">
  57.  
  58. <div id="header">
  59. <div id="head-content" class="clearfix">
  60. <?php if ( get_option('solostream_site_title_option') == 'Image/Logo-Type Title' && get_option('solostream_site_logo_url') ) { ?>
  61. <div id="logo">
  62. <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><img src="<?php echo get_option('solostream_site_logo_url'); ?>" alt="<?php bloginfo('name'); ?>" /></a>
  63. </div>
  64. <?php } else { ?>
  65. <div id="sitetitle">
  66. <div class="title"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></div>
  67. <div class="description"><?php bloginfo('description'); ?></div>
  68. </div>
  69. <?php } ?>
  70. <?php include (TEMPLATEPATH . '/banner468head.php'); ?>
  71. </div>
  72. </div>
  73.  
  74. <?php if ( get_option('solostream_show_catnav') == 'yes' ) { ?>
  75. <div id="catnav">
  76. <div class="limit clearfix">
  77. <?php if (function_exists('wp_nav_menu')) { ?>
  78. <ul class="clearfix">
  79. <?php wp_nav_menu(array('container'=>false,'theme_location'=>'catnav','fallback_cb'=>'catnav_fallback','items_wrap'=>'%3$s')); ?>
  80. <li class="search"><?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
  81. </ul>
  82. <?php } else { ?>
  83. <ul class="clearfix"><?php wp_list_categories('title_li='); ?></ul>
  84. <?php } ?>
  85. </div>
  86. </div>
  87. <?php } ?>
  88.  
  89. <?php include (TEMPLATEPATH . '/banner728.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement