Hello,
I'm trying to get the comments to display from newest to oldest based on the timestamp. I didn't see an option for this, so I assume it's something I need to tweak in the php code. Any help would be great!
Hello,
I'm trying to get the comments to display from newest to oldest based on the timestamp. I didn't see an option for this, so I assume it's something I need to tweak in the php code. Any help would be great!
Add this to your theme's functions.php file:
function reverse_comments($comments,$id) {
$comments = array_reverse($comments);
return $comments;
}
add_filter('comments_array','reverse_comments',10,2);It works! You're AWESOME! Thanks for the fast response!
This topic has been closed to new replies.