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

Navigation.strip.php

By: a guest on Oct 19th, 2011  |  syntax: None  |  size: 0.79 KB  |  hits: 28  |  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. Navigation.strip.PHP
  2.  
  3.  
  4.  
  5. <div class="navStripWrapper">
  6.        
  7.         <ul class="nav fix">
  8.                 <li><a href="<?php echo get_settings('home'); ?>/" title="Recent News">News</a></li>
  9.                 <li class="last"><?php wp_list_pages('title_li=&sort_column=post_title' ) ?></li>
  10.                 <li id="searchBar1" class="searchField">
  11.                         <div>
  12.                                 <form method="get" id="searchForm1" action="<?php bloginfo('home'); ?>/">
  13.                                 <span><input type="text" value="Search..." onfocus="if (this.value == 'Search...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search...';}" name="s" id="s1" /></span>
  14.                                 </form>
  15.                         </div>
  16.                 </li>
  17.         </ul>
  18.  
  19.         <div id="headerStrip" class="toggleCategories fix" style="display: none;">
  20.                 <ul class="fix">
  21.                 <?php wp_list_cats('sort_column=name&optioncount=0'); ?>
  22.                 </ul>
  23.         </div>
  24.        
  25. </div>
  26.