Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: Business Directory Page
- */
- ?>
- <?php get_header(); global $wp_theme_options; ?>
- <?php get_sidebar();?>
- <div id="content" class="business_directory">
- <h4>Business Directory</h4>
- <div id="column_one" class="column">
- <h3>Browse by category</h3>
- <?php
- $cats = wp_list_categories('child_of=12&orderby=name&order=ASC&title_li=&show_count=1&echo=0');
- echo '<ul id="business-directory-category-list">'.$cats.'</ul>';
- ?>
- </div>
- <div id="column_one" class="column">
- <h3>Search business directory</h3>
- <div class="directory_header clearfix">
- <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
- <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...';}" />
- <input type="submit" value="" alt="Submit" class="submit-button" />
- </form>
- </div>
- </div>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment