Title: imsisko's Replies | WordPress.org

---

# imsisko

  [  ](https://wordpress.org/support/users/imsisko/)

 *   [Profile](https://wordpress.org/support/users/imsisko/)
 *   [Topics Started](https://wordpress.org/support/users/imsisko/topics/)
 *   [Replies Created](https://wordpress.org/support/users/imsisko/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/imsisko/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/imsisko/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/imsisko/engagements/)
 *   [Favorites](https://wordpress.org/support/users/imsisko/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Catergories Sidebar Dropdown Not Resolving to Pretty Links](https://wordpress.org/support/topic/catergories-sidebar-dropdown-not-resolving-to-pretty-links/)
 *  [imsisko](https://wordpress.org/support/users/imsisko/)
 * (@imsisko)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/catergories-sidebar-dropdown-not-resolving-to-pretty-links/#post-2201671)
 * **asdfqwer**
 * I see you fixed the your problem! How did you do it? I’m having the same issue
   with wp_dropdown_categories. WordPress doesn’t redirect to the pretty link, the
   url is just ?cat=31..
    PS: this is a custom theme in progress running on my pc.
   Tried the TwentyEleven theme, same issue
 * Here is the snippet I use:
 *     ```
       <form action="<?php bloginfo('url'); ?>/" method="get">
       	<div>
       		<?php
       			$select = wp_dropdown_categories('show_option_none=Select Category&orderby=name&echo=0&hide_empty=0&hierarchical=1');
       			$select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select);
       			echo $select;
       		?>
       		<noscript><div><input type="submit" value="View" /></div></noscript>
       	</div>
       </form>
       ```
   

Viewing 1 replies (of 1 total)