Notifications
Clear all
Topic starter
30/06/2017 7:41 pm
Is there a way to have comments sorted newest to oldest but replies to comments sorted oldest to newest like facebook and YouTube?
Topic starter
30/06/2017 9:23 pm
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');
01/07/2017 12:50 am
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