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

前端之家收集整理的这篇文章主要介绍了wordpress获取文章评论数过滤掉作者代码分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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;}

猜你在找的wordpress相关文章