wordpress 获取指定作者或者文章的所有评论数量

wordpress 获取指定作者或者文章的所有评论数量

<?php
    $args = array(
        'post_author' => '' // fill in post author ID
    );

    $author_comments = get_comments($args);

    echo count($author_comments);

 

根据上面提示的内容,可以查询到指定文章的评论数量

 

参考链接:

https://wordpress.stackexchange.com/questions/249190/get-total-number-of-comment-of-the-posts-written-by-an-author

posted @ 2019-12-03 17:30  Ryan_zheng  阅读(818)  评论(0编辑  收藏  举报