wordpress获取文章评论数过滤掉作者代码分享

复制代码代码如下:
//获取文章评论数,不包含作者自己
function get_comments_number_filter_author() {
global $wpdb, $post;
//需要过滤作者的名称
$author = ‘作者名称’;
$comments = $wpdb->get_results(“SELECT count(0) as total FROM $wpdb->comments WHERE comment_post_ID = $post->ID AND comment_type = ” AND comment_approved = ‘1’ AND comment_author != ‘$author'”);
return $comments[0]->total;
}

代码原理比较简单,就是自己编写sql语句从comments表示获取评论总数,其中不包括文章作者的评论。

将该方法复制到主题的funtions.php文件,在需要的地方调用就行了。

原创文章,作者:VFKTU,如若转载,请注明出处:http://www.wangzhanshi.com/n/114.html

(0)
VFKTU的头像VFKTU
上一篇 2024年12月17日 17:41:57
下一篇 2024年12月17日 17:44:23

相关推荐

发表回复

登录后才能评论