diff --git a/date-based-taxonomy-archives.php b/date-based-taxonomy-archives.php index cc7f35713cf431605df4d43711a070d6f4b15229..cddfb812219efb935c492913b100db29722a267f 100644 --- a/date-based-taxonomy-archives.php +++ b/date-based-taxonomy-archives.php @@ -108,6 +108,7 @@ class Date_Based_Taxonomy_Archives { * @uses this::get_incrementor * @uses wp_cache_get * @uses wp_cache_set + * @uses number_format_i18n * @uses get_month_link * @uses get_archives_link * @return string or false @@ -163,7 +164,7 @@ class Date_Based_Taxonomy_Archives { $text = $wp_locale->get_month( $result->month ); - $after = $show_post_count ? ' (' . absint( $result->posts ) . ')' . $_after : $_after; + $after = $show_post_count ? ' (' . number_format_i18n( absint( $result->posts ) ) . ')' . $_after : $_after; $output .= get_archives_link( $url, $text, 'html', $before, $after ); }