From 8f9e94e7008abae8f7701d0cbb76d330d5085487 Mon Sep 17 00:00:00 2001 From: Ryan Boren 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: https://develop.svn.wordpress.org/trunk@7625 602fd350-edb4-49c9-b593-d223f7449a82 --- 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'); +?>