comments_number( string $zero = false, string $one = false, string $more = false, string $deprecated = '' )

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


Parameters

$zero

(string) (Optional) Text for no comments.

Default value: false

$one

(string) (Optional) Text for one comment.

Default value: false

$more

(string) (Optional) Text for more than one comment.

Default value: false

$deprecated

(string) (Optional) Not used.

Default value: ''


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
WP-0.71 Introduced.