PhoenyxDown

CHCoC Directory

Sep 1st, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Business Directory Page
  4. */
  5. ?>
  6.  
  7. <?php get_header(); global $wp_theme_options; ?>
  8.  
  9. <?php get_sidebar();?>
  10.  
  11. <div id="content" class="business_directory">
  12.    
  13.         <h4>Business Directory</h4>
  14.  
  15.     <div id="column_one" class="column">
  16.         <h3>Browse by category</h3>
  17.         <?php
  18.         $cats = wp_list_categories('child_of=12&orderby=name&order=ASC&title_li=&show_count=1&echo=0');
  19.         echo '<ul id="business-directory-category-list">'.$cats.'</ul>';
  20.         ?>
  21.     </div>
  22.  
  23.     <div id="column_one" class="column">
  24.         <h3>Search business directory</h3>
  25.         <div class="directory_header clearfix">    
  26.             <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
  27.             <input type="text" value="search directory..." name="s" class="s" onfocus="if (this.value == 'search directory...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'search directory...';}" />
  28.             <input type="submit" value="" alt="Submit" class="submit-button" />
  29.             </form>
  30.         </div>
  31.     </div>
  32.  
  33. </div>
  34.  
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment