So, if I understand your question, you want each post to show the comment count, and maybe even the link to the comments for each post?
Where should that link/count go: at the top near the title, or at the end of each post? (or should there be an option to say where the comment count/link goes). And, should there be an option for the comment count without the link?
There is a WP function that allows you to get a comment count for a particular post ID – it is wp_count_comments( post_id )
. And there’s one to display the links to the comments for a particular post – it is get_comments_link( $post_ID )
.
So, it could be done. But where should the link/count go?