Advertisement
Guest User

Untitled

a guest
May 30th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="<?php bloginfo('charset'); ?>" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title><?php wp_title(); ?></title>
  7. <link rel="profile" href="http://gmpg.org/xfn/11" />
  8. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  9. <?php wp_head(); ?>
  10. </head>
  11.  
  12. <body <?php body_class() ?>>
  13.     <div id="wrapper">
  14.         <header id="header">
  15.             <<?php pinboard_title_tag( 'site' ); ?> id="site-title">
  16.                 <?php if ( ( '' != get_header_image() ) &&  ( false != get_header_image() ) ) : ?>
  17.                     <a href="<?php echo home_url( '/' ); ?>" rel="home">
  18.                         <img src="<?php header_image(); ?>" alt="<?php bloginfo( 'name' ); ?>" width="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->width / 2 ) : get_custom_header()->width ); ?>" height="<?php echo ( pinboard_get_option( 'retina_header' ) ? absint( get_custom_header()->height / 2 ) : get_custom_header()->height ); ?>" />
  19.                     </a>
  20.                 <?php endif; ?>
  21.                 <a class="home" href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  22.             </<?php pinboard_title_tag( 'site' ); ?>>
  23.             <?php if( ! is_active_sidebar( 1 ) ) : ?>
  24.                 <<?php pinboard_title_tag( 'desc' ); ?> id="site-description"><?php bloginfo( 'description' ); ?></<?php pinboard_title_tag( 'desc' ); ?>>
  25.             <?php endif; ?>
  26.             <?php get_sidebar( 'header' ); ?>
  27.             <div class="clear"></div>
  28.            
  29.             <nav id="access">
  30.                 <a class="nav-show" href="#access">Show Navigation</a>
  31.                 <a class="nav-hide" href="#nogo">Hide Navigation</a>
  32.                 <?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?>
  33.                 <div class="clear"></div>
  34.             </nav><!-- #access -->
  35.            
  36.             <nav id="access1">
  37.                 <a class="nav-show" href="#access1">Show Navigation</a>
  38.                 <a class="nav-hide" href="#nogo">Hide Navigation</a>
  39.                 <?php wp_nav_menu( array( 'theme_location' => 'secondary_nav' ) ); ?>
  40.                 <div class="clear"></div>  
  41.             </nav><!-- #access1 -->
  42.             </header><!-- #header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement