Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fernandofuly/f683ee214acea5122e35 to your computer and use it in GitHub Desktop.
Save fernandofuly/f683ee214acea5122e35 to your computer and use it in GitHub Desktop.
Display All Your WordPress Categories in a Drop Down Menu
<form action="<?php bloginfo('url'); ?>/" method="get">
<?php
$select = wp_dropdown_categories('show_option_none=Select Category&show_count=1&orderby=name&echo=0&selected=6');
$select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select);
echo $select;
?>
<noscript><input type="submit" value="View" /></noscript>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment