W3cubDocs

/WordPress

comments_number( string|false $zero = false, string|false $one = false, string|false $more = false, int|WP_Post $post )

Displays the language string for the number of comments the current post has.

Parameters

$zerostring|falseoptional
Text for no comments.

Default:false

$onestring|falseoptional
Text for one comment.

Default:false

$morestring|falseoptional
Text for more than one comment.

Default:false

$postint|WP_Postoptional
Post ID or WP_Post object. Default is the global $post.

Source

function comments_number( $zero = false, $one = false, $more = false, $post = 0 ) {
	echo get_comments_number_text( $zero, $one, $more, $post );
}

Changelog

Version Description
5.4.0 The $deprecated parameter was changed to $post.
0.71 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/comments_number