How can I make the comment count on a post on my index page include comments that have been made on, in my case, individual gallery pictures that are included in the post? It seems that comments made on attachments like this aren't counted using the standard WordPress comments functions.
How can I make the comment count on a post on my index page include comments that have been made on, in my case, individual gallery pictures that are included in the post? It seems that comments made on attachments like this aren't counted using the standard WordPress comments functions.
Share Improve this question asked Jul 9, 2012 at 9:59 JosJos 412 bronze badges1 Answer
Reset to default 0A gallery is a post with attached media. So maybe you'll find hints like this : just hook on get_comment_numbers() and pass $attachment_id.
I think in this case you'll have to add an SQL query to get the comment count for attachment and then you'll be able to add it to the total number of comments for post , something like this :
global $wpdb;
$wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE post_type = 'attachment'" ) ;
I haven't tested yet. Hopefully this will help you.