comments_number

过滤钩子
apply_filters( 'comments_number', $output, $number )
参数
  • (string) $output A translatable string formatted based on whether the count is equal to 0, 1, or 1+.
    Required:
  • (int) $number The number of post comments.
    Required:
定义位置
相关勾子
get_comments_numbercomment_urlcomments_opencomment_form_beforecomments_per_page
相关方法
comments_numberget_comments_numberget_comments_number_textcomment_timecomments_rsscomments_link
引入
1.5.0
弃用
-

comments_number: 这个函数返回一个给定文章的评论数。默认情况下,这个函数返回评论的总数,但是你可以使用comments_number过滤器来修改返回的评论数。

过滤显示的评论计数。

return apply_filters( 'comments_number', $output, $number );

常见问题

FAQs
查看更多 >