Post Pic

Chris Berry asked “How to display the number of comments on each post?”

One of my readers, Chris Berry, recently asked in the forum how he can display the number of comments for each posts. While some themes do it by default, most of them don’t display it at all. Here’s a recipe to solve Chris problem.

To achieve this recipe, simply open your index.php file and paste the following code within the loop:

<?php comments_number('No comments yet','1 comment','% comments')?>

Even better, this simple line of code have a link to jump directly to the comments:

<a href="<?php the_permalink() ?>#comments"><?php comments_number('No comments yet','1 comment','% comments')?></a>

Leave a Comment

* Name, Email, Comment are Required