wp_count_comments

过滤钩子
apply_filters( 'wp_count_comments', array()
参数
  • (array|stdClass) $count An empty array or an object containing comment counts.
    Required:
  • (int) $post_id The post ID. Can be 0 to represent the whole site.
    Required:
定义位置
相关勾子
wp_insert_commentwp_get_current_commenterpost_comments_linkuntrash_commentwp_list_comments_args
相关方法
wp_count_commentswp_count_attachmentswp_untrash_commentwp_list_commentswp_new_commentwp_count_posts
引入
2.7.0
弃用
-

wp_count_comments 函数是一个 WordPress 核心函数: 这个函数用于计算指定文章的评论数量。它接受文章 ID 作为参数,并返回一个包含评论数量信息的对象。该对象包含了所有状态的评论数量,例如已批准的评论数量、未批准的评论数量、垃圾评论数量等。

过滤某一特定文章或整个网站的评论数。

$filtered = apply_filters( 'wp_count_comments', array(), $post_id );

常见问题

FAQs
查看更多 >