Notifications
Clear all

[Solved] Comments and Replies Sorting

3 Posts
2 Users
1 Likes
1,992 Views
 Who
(@amor)
Member Customer
Joined: 7 years ago
Posts: 20
Topic starter  

Is there a way to have comments sorted newest to oldest but replies to comments sorted oldest to newest like facebook and YouTube?


   
Quote
 Who
(@amor)
Member Customer
Joined: 7 years ago
Posts: 20
Topic starter  

I'm not sure if there is another way to do this but the following is how I got what I wanted.

In the functions.php file of your theme or child theme add the following:

function setCommentArgs($defaultArgs){

return array_merge($defaultArgs,array('reverse_children'=> TRUE));

}

add_filter('wpdiscuz_comment_list_args', 'setCommentArgs');

 


   
ReplyQuote
 Tom
(@tomson)
Famed Member Admin
Joined: 9 years ago
Posts: 4172
 
Posted by: Who

Is there a way to have comments sorted newest to oldest but replies to comments sorted oldest to newest like facebook and YouTube?

There is no other way this is the only custom codding way.


   
Who reacted
ReplyQuote
Share:
Scroll to top