Hi the bsbrb. In Theme Options > Blog, set the Thumbnail Comment Count option ON. This should enable the display of the green comment count icon on the post featured image thumbnail.
Hi the bsbrb. In Theme Options > Blog, set the Thumbnail Comment Count option ON. This should enable the display of the green comment count icon on the post featured image thumbnail.
Thanks for your reply, bdbrown. Sorry, I meant how can I display a number next to each individual comment. Thanks.
Here’s a way someone figured out 10 years ago 😉
https://wordpress.org/support/topic/count-comments-for-each-post?replies=5
I didn’t find any plugins that would do what you want so you’re probably looking at modifying the theme file.
Thanks. I don’t have that line of code in my comments.php. The closest I’ve got is:
<?php // not calling wp_list_comments twice, as it breaks pagination
$pings = $comments_by_type['pings'];
foreach ($pings as $comment) { ?>
The theme uses the WP function wp_list_comments() to display the comments. You’d probably need to create a custom callback function to modify the display. There is a sample here in the wp_list_comments() Codex page.
(@the-bsbrb)
10 years, 5 months ago
How do I make each comment on a post show a number? 1st comment received 1, 2nd comment 2 etc?