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); ?>
Categories: Blogs, Bookmarks, PhP, Web, Wordpress comments.php, Reverse Order comments, wordpress comments









Once again: only a few lines of change and it will run.
That was absolutely TOO EASY lol
)) Thanks so much for the quick fix – I tried a plugin that *cough* didn’t work … KUDOS!
It appears you can’t reverse the ordering of comments, unless you are self-hosting. I have a wordpress.com blog – but it doesn’t let me change the code, that I can see. Any help for me out there? (thanks in advance!)
BEAUTIFUL! Works great on my website. Thank you!
Thank you for the post. I searched a way to change the ordering of my comments.