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
This commit is contained in:
Ryan Boren 2008-04-08 01:53:53 +00:00
parent 11f65056f9
commit 8f9e94e700
1 changed files with 6 additions and 2 deletions

View File

@ -167,8 +167,12 @@ foreach ($arc_result as $arc_row) {
</select>
<?php } ?>
<?php wp_dropdown_categories('show_option_all='.__('View all categories').'&hide_empty=1&hierarchical=1&show_count=1&orderby=name&selected='.$cat);?>
<?php do_action('restrict_manage_posts'); ?>
<?php
$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');
?>
<input type="submit" id="post-query-submit" value="<?php _e('Filter'); ?>" class="button-secondary" />
<?php } ?>