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

$zero

(Optional) Text for no comments.

Default value: false

$one

(Optional) Text for one comment.

Default value: false

$more

(Optional) Text for more than one comment.

Default value: false

$post

(Optional) Post ID or WP_Post object. Default is the global $post.


Source

File: wp-includes/comment-template.php

function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, 'WP-1.3.0' );
	}
	echo get_comments_number_text( $zero, $one, $more );
}


Changelog

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