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.
Description Description
Parameters 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 Source
File: wp-includes/comment-template.php
function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) { if ( ! empty( $deprecated ) ) { _deprecated_argument( __FUNCTION__, '1.3.0' ); } echo get_comments_number_text( $zero, $one, $more ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
0.71 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Text Response to Number of Comments
Displays text based upon number of comments: Comment count zero – no responses; comment count one – one response; more than one comment (total 42) displays 42 responses.
Title For Comments Section
You might want to have a title above your comments section that includes the number of comments. This example shows how to do that and have all the strings also be translatable.