Help Needed: Category Dropdown & Go
So I want to make a very simple step by step to my site which starts with the visitor choosing a category. - this will force them into the category view where they will have the furth option of using the refine results feature (WHICH IS AWESOME).
What I have found from the wordpress function/reference documents is a cute bit of code which makes a very simple drop down with a go button:
<form action="<?php bloginfo('url'); ?>" method="get">
<div>
<?php wp_dropdown_categories('show_count=0&hierarchical= 1&show_option_all=Choose Category'); ?>
<input type="submit" class="btn_orange" name="submit" value="GO" />
</div>
</form>
but this obviously does the normal categories! is there any way of getting this to do the ad categories instead??
Any help would be appreciated.
Thanks
Phil