函数原型
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.
是否弃用
未弃用
函数参数
-
$zero
string|false
Optional - Text for no comments.
Default:
false -
$one
string|false
Optional - Text for one comment.
Default:
false -
$more
string|false
Optional - Text for more than one comment.
Default:
false -
$post
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 = 0 ) {
echo get_comments_number_text( $zero, $one, $more, $post );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 5.4.0 | The $deprecated parameter was changed to $post. |
| 0.71 | Introduced. |

