我首先想到的是pre_user_query
就是这份工作的诱饵。但我认为pre_get_posts
, 这是pre_get_users
, 在这里很合适。
你还说你想在admin中运行这个。因此,在运行此之前,我们将进行检查。
function my_custom_order_users_by_id( $query ) {
//Check that we are in admin otherwise return
if( !is_admin() ) {
return;
}
// We are changing the query_vars to reorder
$query->query_vars[\'orderby\'] = \'ID\';
$query->query_vars[\'order\'] = \'DESC\';
// We need to remember to return the altered query.
return $query;
}
// Lets apply our function to hook.
add_action( \'pre_get_users\', \'my_custom_order_users_by_id\' );