
正文
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






