Hi!
I'm using this code to give me a dropdown list of categories:
<form action="<?php bloginfo('url'); ?>" method="get"
id="">
<?php wp_dropdown_categories('hide_empty=0&orderby=name&echo=1&title_li='); ?>
<input type="submit" class="searchsubmit" name="submit" value="OK!" />
</form>
But that takes away my permalinks settings and the urls look like "?cat=3&submit=OK%21" is there anyway to make them look nice again?
I tried some plugins for dropdowns, but most of them are widget based, but i can't use that with my theme.
Thanks!