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.
Leave a Reply
You must be logged in to post a comment.
A 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 :
I haven’t tested yet. Hopefully this will help you.