﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
13258	wp_dropdown_categories() uses $term->id instead of $term->name for taxonomies that are not categories	mfields		"I was excited to discover that wp_dropdown_categories() had been extended to support custom taxonomies but when I tried to implement it, the navigation failed because it always uses the $term->ID in the value attribute of the option tag for each term.

{{{
<option class=""level-0"" value=""13"">A Category</option>
}}}

This makes sense because WordPress category requests uses the term id: /?cat=13

But in the case of tags, we get this code:

{{{
<option class=""level-0"" value=""3"">My Tag</option>
}}}

which pulls a 404 when you request: /?tag=3"	enhancement	new	normal	Future Release	Taxonomy	3.0	normal		2nd-opinion has-patch	mfields kevinB wp-t31os@… stephen@… vanjwilson
