Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: None  |  size: 1.54 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /********************************************************************
  2. Custom Header
  3. ********************************************************************/
  4. add_action('thesis_hook_header', 'menu');
  5. function menu() {
  6. global $mytheme; ?>
  7.         <div class="ge-navigation">
  8.       <div class="ge-navigation-item">
  9.         <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'sf-menu','depth' => '0' ) ); // end top menu ?>
  10.       </div>
  11.       <div class="ge-phone">
  12.         <h2><?php echo $mytheme['fone']; ?></h2>
  13.       </div>
  14.     </div>
  15.     <div id="ge-sidebar">
  16.         <div class="ge-logo"><a href="<?php echo home_url( '/' ); ?>"><img src="<?php echo $mytheme['logo']; ?>" alt="<?php bloginfo('description'); ?>" width="87" height="41" /></a>
  17.         </div>
  18.         <div class="ge-sidebar-text">
  19.         <p><?php bloginfo('description'); ?></p>
  20.         </div>
  21.         <div class="ge-search">
  22.         <form action="<?php echo home_url( '/' ); ?>" id="ge-search-form" method="get" >
  23.                 <fieldset>
  24.                 <input type="text" value="Search" onfocus='if (this.value == "Search") {this.value = ""}' onblur='if (this.value == "") {this.value = "Search";}' name="s" id="search" />
  25.                 <button type="submit"><span>Search</span></button>
  26.             </fieldset>
  27.         </form>
  28.         </div>
  29.         <div class="sp-bl-navigation">
  30.             <ul>
  31.                 <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?><?php endif; // end footer widget area ?>
  32.             </ul>
  33.         </div>
  34.     </div>
  35. <?php
  36. }