Abed Matini
Abed Matini

Reputation: 31

Sort users by registration date / time in WordPress by default

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

Answers (1)

Abed Matini
Abed Matini

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

Related Questions