Nope, the line you found seems to be some basic preliminary query. Selection of users for display in table seems to be handled by WP_User_Search
class. Luckily it can be hooked into easily.
Try this (changes order to descending):
add_action('pre_user_search', 'change_user_order');
function change_user_order($query) {
$query->query_orderby = ' ORDER BY user_login DESC';
}
PS I am not sure if this can interfere with something else, so might require checks to only run on that specific page.
Related Posts:
- How do I add a field on the Users profile? For example, country, age etc
- user_login vs. user_nicename
- WordPress usermeta scaling for thousands of users
- Groups of capabilities: users with multiple roles?
- Is there a way to merge two users?
- How to restrict access to uploaded files?
- Execute a function when admin changes the user role
- Why are user address fields required [closed]
- Importing users? From another wordpress site
- How to discover and delete unused accounts?
- Basic auth WordPress REST API dilemma
- Remove all users from site except one using WP CLI
- security+best practices: root or www-data on a wordpress content folder?
- Show Biographical Info while creating new user
- How to enable the theme editor cap for an editor role?
- WordPress keeps asking for connection information in localhost
- importing users where password is provided as md5 + much metadata
- User File Upload Repository?
- How to get user ID during registration and add it to a custom table
- How do I properly format the user_role array?
- Total number of authors with more than one post
- WordPress has a trash for users? (Wrong result for count_user, greater than expected)
- Is there a simple way to manage capabilities per user?
- How Do I Prevent Junk Account Creation?
- Check for user meta data at Login
- Buddypress – Send New User Activation Link to Admin [closed]
- Redirect after users complete profile form
- Memory usage for scalable usermeta queries
- How to get current user’s phone number
- How can I retrieve current user id within wordpress plugin?
- Front End Registration Form Code – Password Field Not Saving
- How can I verify users facebook ID that he provides during signup process
- How do I customize the dashboard?
- How would I hook into `clear_auth_cookie` to return the user’s ID that’s currently being logged out?
- How to disable a specific page for a specific user
- How to change textarea rows height for user’s biographical Info?
- New users not showing up in Post -> Edit
- How can i change the name order in the admin?
- WP_User_Query by meta_value with Number returns nothing
- How to add user from front end
- Rewrite Rules and Login Issue
- I am getting mysql_real_escape_string() function error while adding user?
- User profile updates password even if not filled (Theme my login) in Firefox? [closed]
- Preventing auto-filling of e-mail addresses on profile.php
- users and usermeta table
- Getting the age of a users account
- Prevent subscribers to changing certain profile fields
- New user form rejected because “passwords don’t match”—but there’s only one password field
- Unable to change email address of admin on localhost
- How can I prevent certain custom roles from seeing other custom roles on the user list page?
- Creating User Profiles using author.php
- “the_author_meta(‘url’)” not working inside “href”
- REST API: wp_get_current_user not working on second call
- How to let the users edit their user names?
- How do I filter users based on email address?
- What’s the correct way to add capabilites to user roles?
- Web app vs CMS backend
- User roles not displaying
- How to count total words for posts published by one author?
- Should I setup frontend-only users as CPT or use a plug-in?
- How to expire user registration?
- Echo a list of all subscriber’s user IDs
- user login and its profile
- wp_delete_user – huge overhead in Buddypress?
- Get current logged-in user from external site
- Delete all users with Editor role and their content mysql
- Send user auto generated password on different email
- Load Custom Field to User Profile as per User Role using Ajax
- Show posts who published after registration date
- How to hide “Change role to” dropdown on Users admin menu
- Get UserInfo from WordPress
- How to display a calendar with events depending on the user?
- How to show different pages for different users
- How can i display pagination in custom comment list?
- hide page menu from admin panel for specific users
- Single Sign On (SSO) between two WordPress websites
- Disabling user capability to edit_posts or delete_posts in the front-end
- Redirect /member/ to /member/user
- get user id in a plugin without a function
- $user_login is not working if author has only 1 post
- WP_User object behaving strangely when used inside Admin Panel?
- REST_query_vars for users
- How to use a transient inside WP_User_Query
- Allowing users to edit only their page and nobody else’s
- How to bulk change user role to “No role for this site”
- Showing extra profile fields in admin – problem with underscore
- Add an ‘edit profile’ page with Genesis
- Exclude Current user email and send notification
- Insert query not working for non-logged in user
- Disallow user registration/checkout via Hotmail/Yahoo
- User management missing after migration to new host
- Add new user and user bio at same time
- Validate user meta and redirect
- Let admin users edit member profiles from front end
- Storing additional information about the user
- What techniques can a user employ to achieve a password rated “strong” in the WordPress password checker
- New User Registration email
- How to allow users to make quizzes or tests in WordPress?
- Sorting Users page admin column with ACF field
- Can we get user profile page using user_id in the URL?