Weekend QuickTip: Display a Comment’s Number in a List

Ever wanted to show each comment’s position in a list without using an ordered list (<ol>) to do it? Unfortunately, WordPress doesn’t include a function do do this. However, by using a simple PHP trick, we can accomplish this.

Open comments.php and scroll down to where the comments loop begins:

<?php foreach ($comments as $comment) : ?>

Before the loop begins, we need to set the PHP variable we’ll use to determine the number. Change the above line to the following:

<?php $commentNum = 1; foreach ($comments as $comment) : ?>

We’ve now assigned the value “1″ to the variable $commentNum.

Next, find the end of the loop:

<?php endforeach; ?>

We need to increase the value of $commentNum by 1 before the loop ends. To do this, we use PHP’s increment operator:

<?php $commentNum++; endforeach; ?>

Now you can use the variable $commentNum anywhere within the loop. Simply echo the variable with PHP to display the current comment’s number.

<?php echo $commentNum; ?>

6 Responses to “Weekend QuickTip: Display a Comment’s Number in a List”

detikmadura
Posted on October 18th, 2008 at 11:21 AM

great tips …

thanks bro ..

Binny V A
Posted on October 18th, 2008 at 3:34 PM

Or use <ol> tag in the html - that would show numbers.

Dan Philibin
Posted on October 18th, 2008 at 3:35 PM

The

    tag doesn’t offer as many formatting options as one might need. This method allows you to put the number anywhere and inside any HTML element you want.

500c
Posted on November 7th, 2008 at 10:03 AM

I got my dm500c from here

Jonathan
Posted on November 12th, 2008 at 8:06 PM

This was what I was looking for, you guys rock!

J

Jauhari
Posted on December 25th, 2008 at 7:00 PM

Is it work on WordPress 2.7?

Leave a Reply