Advertisement
Guest User

header-html5.php

a guest
Aug 7th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes( ); ?>>
  3.     <head>
  4.         <meta charset="<?php bloginfo( 'charset' ); ?>" />
  5.         <title><?php wp_title( '|', true, 'right' ); ?></title>
  6.         <!--[if IE]>
  7.         <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  8.         <![endif]-->
  9. <?php
  10.         wp_head( );
  11. ?>
  12.     </head>
  13. <body <?php body_class( ); ?>>
  14.     <div id="<?php echo esc_attr( raindrops_warehouse( 'raindrops_page_width' ) ); ?>" class="<?php echo esc_attr( 'yui-'.raindrops_warehouse( 'raindrops_col_width' ) ); ?> hfeed">
  15. <?php
  16.         raindrops_prepend_doc( );
  17. ?>
  18.         <header id="top">
  19.             <div id="hd">
  20. <?php
  21. /**
  22.  * Conditional Switch html headding element
  23.  *
  24.  * example
  25.  *  raindrops_site_title( " add some text" );
  26.  *
  27.  */
  28.         echo raindrops_site_title( );
  29. /**
  30.  * Site description diaplay at header bar when if header text Display Text value is no.
  31.  *
  32.  * example
  33.  *  raindrops_site_description( array("text"=>"replace text","switch" => 'style="display:none;"' );
  34.  *
  35.  *
  36.  */
  37.         echo raindrops_site_description( );
  38. ?>
  39.             </div>
  40. <?php
  41. if ( $raindrops_link_unique_text == true ) {
  42.  
  43.             //echo raindrops_header_image( 'elements' );
  44.         }else{
  45.  
  46.             //echo raindrops_header_image( 'home_url' );
  47.         }
  48.  
  49. ?>
  50.  
  51. <?php if ( function_exists( "easingsliderlite" ) ) { easingsliderlite(); } ?>
  52.  
  53.  
  54. <?php
  55. /**
  56.  * horizontal menubar
  57.  *
  58.  *
  59.  *
  60.  *
  61.  */
  62.  
  63.         raindrops_nav_menu_primary( );
  64.        
  65.  
  66.         raindrops_after_nav_menu( );
  67. ?>
  68.         </header>
  69.         <div id="bd" class="clearfix">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement