wordpress 获取指定作者或者文章的所有评论数量
<?php $args = array( 'post_author' => '' // fill in post author ID ); $author_comments = get_comments($args); echo count($author_comments);
根据上面提示的内容,可以查询到指定文章的评论数量
参考链接:
wordpress 获取指定作者或者文章的所有评论数量
<?php $args = array( 'post_author' => '' // fill in post author ID ); $author_comments = get_comments($args); echo count($author_comments);
根据上面提示的内容,可以查询到指定文章的评论数量
参考链接: