Title: [Plugin: Customized Recent Comments] Double comments
Last modified: August 20, 2016

---

# [Plugin: Customized Recent Comments] Double comments

 *  [tophost](https://wordpress.org/support/users/tophost/)
 * (@tophost)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-customized-recent-comments-double-comments/)
 * BUG. When you use the option to exclude a category, all the comments of an article
   that is part of multiple categories are duplicated.
 * To solve this problem just open the file “customized-recent-comments.php” and
   correct the query in line 505 by adding a “DISTINCT”
 * Before:
 *     ```
       $query = "SELECT 	c.comment_ID,
       							c.comment_post_ID,
       							c.comment_author,
       							c.comment_author_email, ...
       ```
   
 * After:
 *     ```
       $query = "SELECT 	DISTINCT c.comment_ID,
       							c.comment_post_ID,
       							c.comment_author,
       							c.comment_author_email, ...
       ```
   
 * [http://wordpress.org/extend/plugins/customized-recent-comments/](http://wordpress.org/extend/plugins/customized-recent-comments/)

Viewing 1 replies (of 1 total)

 *  [psn](https://wordpress.org/support/users/psn/)
 * (@psn)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-customized-recent-comments-double-comments/#post-2957876)
 * Thxs for above solution that solve this problem at once.
 * 🙂

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Customized Recent Comments] Double comments’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/customized-recent-comments.svg)
 * [Customized Recent Comments](https://wordpress.org/plugins/customized-recent-comments/)
 * [Support Threads](https://wordpress.org/support/plugin/customized-recent-comments/)
 * [Active Topics](https://wordpress.org/support/plugin/customized-recent-comments/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/customized-recent-comments/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/customized-recent-comments/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [psn](https://wordpress.org/support/users/psn/)
 * Last activity: [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-customized-recent-comments-double-comments/#post-2957876)
 * Status: not resolved