79252605

Date: 2024-12-04 20:21:52
Score: 0.5
Natty:
Report link

This is what really worked for me

add_action('pre_get_comments', function($query) {
    if ( !is_admin()) {
        $query->query_vars['order'] = 'DESC';
    }
});

Intercepting comments_template_query_args still did not work as pagination sorting is messed.

Reasons:
  • Blacklisted phrase (1): did not work
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deniss