WordPress comment pagination : newest comments on first page

A simple way to arrange your comments by most recent is to add this to your functions.php file:

if (!function_exists('custom_reverse_comments')) {
    function custom_reverse_comments($comments) {
        return array_reverse($comments);
    }   
}
add_filter ('comments_array', 'custom_reverse_comments');