On this page
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
Source
File: wp-includes/comment-template.php. View all references
function comments_number( $zero = false, $one = false, $more = false, $post = 0 ) {
echo get_comments_number_text( $zero, $one, $more, $post );
}
Related
Uses
| Uses | Description |
|---|---|
| get_comments_number_text() wp-includes/comment-template.php | Displays the language string for the number of comments the current post has. |
Used By
| Used By | Description |
|---|---|
| comments_popup_link() wp-includes/comment-template.php | Displays the link to the comments for the current post ID. |
Changelog
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/comments_number