how to number of comments in wordpress
Your wordpress blog post have lots of comments? If yes, it can be really useful for you and also your blog readers to number the comments. Here’s how to number of comments in wordpress easily and efficiently.
Open your wordpress template on comments.php and find the following line:
<?php foreach ($comments as $comment) : ?>
Just above this line, initialize counter variable:
<?php $i = 0; ?>
Just after this line, increment counter:
<?php $i++; ?>
Now, you just have to echo the $i variable to get the number of the comment. Paste this code anywhere on the comments loop:
<?php echo $i; ?>
Your wordpress comments are now numbered. Hope this is useful for you.