Changeset 27329
- Timestamp:
- 02/28/2014 09:47:53 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/category-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-template.php
r27065 r27329 890 890 891 891 if ( !empty($show_count) ) 892 $link .= ' (' . intval($category->count) . ')';892 $link .= ' (' . number_format_i18n( $category->count ) . ')'; 893 893 894 894 if ( 'list' == $args['style'] ) { … … 974 974 $output .= $pad.$cat_name; 975 975 if ( $args['show_count'] ) 976 $output .= ' ('. $category->count.')';976 $output .= ' ('. number_format_i18n( $category->count ) .')'; 977 977 $output .= "</option>\n"; 978 978 }
Note: See TracChangeset
for help on using the changeset viewer.