diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 00b04df42e..1733f4077a 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -889,7 +889,7 @@ class Walker_Category extends Walker { } if ( !empty($show_count) ) - $link .= ' (' . intval($category->count) . ')'; + $link .= ' (' . number_format_i18n( $category->count ) . ')'; if ( 'list' == $args['style'] ) { $output .= "\tcount .')'; + $output .= '  ('. number_format_i18n( $category->count ) .')'; $output .= "\n"; } }