Advertisement
Webulous

Untitled

Jun 9th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.20 KB | None | 0 0
  1. <header id="masthead" class="site-header header-wrap" role="banner">
  2.     <div class="container">
  3.         <div class="row">
  4.             <div class="span3">
  5.                 <div class="logo site-branding">
  6.                     <?php if( isset( $abaris['site-title'] ) && isset( $abaris['custom-logo'] ) && $abaris['site-title'] ) : ?>
  7.                         <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="<?php echo $abaris['custom-logo']['url']; ?>" alt="logo" ></a></h1>
  8.                     <?php else : ?>
  9.                         <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  10.                     <?php endif; ?>
  11.                     <?php if( isset( $abaris['site-description'] ) && $abaris['site-description'] != 0 ) : ?>
  12.                         <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  13.                     <?php endif; ?>
  14.                 </div>
  15.             </div>
  16.  
  17.             <div class="span9">
  18.                 <nav id="site-navigation" class="main-navigation" role="navigation">
  19.                     <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'abaris' ); ?></a>
  20.                     <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  21.                 </nav><!-- #site-navigation -->
  22.             </div>
  23.         </div>
  24.     </div>
  25. </header><!-- #masthead -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement