Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



Wordpress - Admin -...
 
Share:
Notifications
Clear all

[Solved] Wordpress - Admin - How to sort the user overview by date by default

3 Posts
2 Users
1 Likes
1,181 Views
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2678
Topic starter  

Since I have to look for spammers on a daily basis, I always want to see the Users overview, in the wp-admin pages, ordered by date (descending).
I have no idea why this is not a default option or setting, but with this little code this will be done automatically:

(copy the code into the functions.php of your theme)

// Start the users overview with users sorted by date

function t4a_default_users_by_date($args){
    if ( empty( $args['orderby'] ) ) {  
        $args["orderby"] = "user_registered";
        $args["order"]   = "DESC"; 
      }
        
    return $args;
}

add_filter("users_list_table_query_args","t4a_default_users_by_date");

This will sort only if no sort order has been set (that's what it starts with). 


   
ReplyQuote
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2678
Topic starter  

Adding the code above to your theme's functions.php file fixes the default sorting order 😊 


   
ReplyQuote
(@Anonymous)
Joined: 1 second ago
Posts: 0
 

Thanks for sharing this code. I was looking it for like last 1 hour. 


   
Hans reacted
ReplyQuote
Share: