Uses
Uses | Description |
---|---|
wp-includes/comment-template.php: get_comments_number_text() | Displays the language string for the number of comments the current post has. |
Displays the language string for the number of comments the current post has.
(string) (Optional) Text for no comments.
Default value: false
(string) (Optional) Text for one comment.
Default value: false
(string) (Optional) Text for more than one comment.
Default value: false
(int|WP_Post) (Optional) Post ID or WP_Post object. Default is the global $post
.
File: wp-includes/comment-template.php
function comments_number( $zero = false, $one = false, $more = false, $post_id = 0 ) { echo get_comments_number_text( $zero, $one, $more, $post_id ); }
Version | Description |
---|---|
5.4.0 | The $deprecated parameter was changed to $post_id . |
0.71 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/comments_number