By default, WordPress displays comments according to time from the older to the latest. However sometimes we just want to sort comments in the reverse order. Here is how you can, use the array_reverse() php function to achieve the goal.
Open the comments.php file from your theme. Find the following line:
How to Sort Comments Reversely in WordPress
By default, WordPress displays comments according to time from the older to the latest. However sometimes we just want to sort comments in the reverse order. Here is how you can, use the array_reverse() php function to achieve the goal.
Open the comments.php file from your theme. Find the following line:
Change it to something like this:
Once you saved the file, WordPress will displays comments from the older to the latest.