wordpress自带的方法获取评论数,会包括文章作者自己的评论,给人感觉显然不太好,只能自己写个方法进行获取了。该方法在wordpress 3.4.1版本测试通过。
//获取文章评论数,不包含作者自己 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文件,在需要的地方调用就行了。
转载请注明:快乐编程 » wordpress获取文章评论数,过滤掉作者自己