Reverse Order in comments for WordPress Blog

 

Reverse Order in comments for WordPress Blog

If you prefer a reverse ordering of comments do the next “hack”.
In file comments.php from your theme find line code:

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

and insert before, this code:

<?php $comments = array_reverse($comments, true); ?>


2 Responses to “Reverse Order in comments for WordPress Blog”

  1. BEAUTIFUL! Works great on my website. Thank you!

  2. Thank you for the post. I searched a way to change the ordering of my comments.

Post a Comment