﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
12310	Move 'restrict_manage_posts' hook outside of category if statement	jfarthing84		"As it is now, the hook is usesless except for categories:

{{{
if ( is_object_in_taxonomy($post_type, 'category') ) {
	$dropdown_options = array('show_option_all' => __('View all categories'), 'hide_empty' => 0, 'hierarchical' => 1,
		'show_count' => 0, 'orderby' => 'name', 'selected' => $cat);
	wp_dropdown_categories($dropdown_options);
	do_action('restrict_manage_posts');
}
}}}

We can't add any kind of filtering for custom taxonomies. Can we get this hook moved outside of the 'IF' statement, please?"	enhancement	closed	normal	3.0	Administration	3.0	normal	fixed	dev-feedback has-patch	jeff@…
