I fixed it. Just fix some code in class_function.php line 1513
We can’t use wp_parse_arg() here because it always return sort_order = asc.
Therefore, I change to this code:
else{$args = array(
'order_by' => 'user_registered',
'sort_order' => 'DESC',
Share for everyone