Advertisement
Wh0CaREs

MastHead

Nov 24th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.51 KB | None | 0 0
  1. <header id="masthead" class="site-header" role="banner">
  2.  
  3.     <!-- <hgroup class="full-container">
  4.         <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home" class="logo"><?php vantage_display_logo(); ?></a>
  5.  
  6.         <?php if( is_active_sidebar('sidebar-header') ) : ?>
  7.  
  8.             <div id="header-sidebar">
  9.                 <?php dynamic_sidebar( 'sidebar-header' ); ?>
  10.             </div>
  11.  
  12.         <?php else : ?>
  13.  
  14.             <div class="support-text">
  15.  
  16.                 <?php do_action('vantage_support_text'); ?>
  17.             </div>
  18.  
  19.         <?php endif; ?>
  20.     </hgroup>
  21. -->
  22.  
  23.     <nav role="navigation" class="site-navigation main-navigation primary <?php if( siteorigin_setting('navigation_use_sticky_menu') ) echo 'use-sticky-menu' ?>">
  24.         <div class="full-container">
  25.  
  26.  
  27.             <?php if( siteorigin_setting('navigation_menu_search') ) : ?>
  28.  
  29.  
  30.                    
  31.                     <div id="language"><?php echo qtrans_generateLanguageSelectCode('image'); ?></div>
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.                     <div id="search-icon">
  40.                     <div id="search-icon-icon"><div class="icon"></div></div>
  41.                     <form method="get" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search">
  42.                         <input type="text" class="field" name="s" value="<?php echo esc_attr( get_search_query() ); ?>" />
  43.                     </form>
  44.                 </div>
  45.             <?php endif; ?>
  46.  
  47.             <?php wp_nav_menu( array( 'theme_location' => 'primary', 'link_before' => '<span class="icon"></span>' ) ); ?>
  48.         </div>
  49.     </nav><!-- .site-navigation .main-navigation -->
  50.  
  51. </header><!-- #masthead .site-header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement