Reputation: 31
How to sort the users by registration date in WordPress by default? your-website/wp-admin/users.php shows users alphabetically by default.
Upvotes: 1
Views: 1303
Reputation: 31
This worked for me:
add_action( 'pre_user_query', 'change_users_search_order' );
function change_users_search_order($obj){
if( !in_array($_REQUEST['order'],array('asc','desc')) ){
$_REQUEST['order'] = 'desc';
}
$obj->query_orderby = "ORDER BY user_registered ".$_REQUEST['order']."";
}
}
Upvotes: 2