From 9ffa66c56c37cd38e695eb67aeff82f779efbcc6 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 8 Apr 2008 01:53:53 +0000 Subject: [PATCH] Show all categories in category filter. Don't show misleading counts. see #6439 git-svn-id: http://svn.automattic.com/wordpress/trunk@7625 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index b8805dd601..b7cdcf45b5 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -167,8 +167,12 @@ foreach ($arc_result as $arc_row) { - - + __('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'); +?>