mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Format the number of comments in wp-includes/embed-template.php
for the locale.
Props johnbillion. Fixes #34276. Built from https://develop.svn.wordpress.org/trunk@35096 git-svn-id: http://core.svn.wordpress.org/trunk@35061 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8941648ead
commit
b30dcc3f62
@ -163,7 +163,7 @@ if ( have_posts() ) :
|
|||||||
'%s <span class="screen-reader-text">Comments</span>',
|
'%s <span class="screen-reader-text">Comments</span>',
|
||||||
get_comments_number()
|
get_comments_number()
|
||||||
),
|
),
|
||||||
absint( get_comments_number() )
|
number_format_i18n( get_comments_number() )
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</a>
|
</a>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-35095';
|
$wp_version = '4.4-alpha-35096';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user