Skip to content

Instantly share code, notes, and snippets.

@rodica-andronache
Created October 25, 2013 21:27
Show Gist options
  • Select an option

  • Save rodica-andronache/7162111 to your computer and use it in GitHub Desktop.

Select an option

Save rodica-andronache/7162111 to your computer and use it in GitHub Desktop.
WORDPRESS - Make a select with category list
<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