Tulip Media

Entrepreneurial thoughts

WordPress: display users by registration date

Here is a very useful WordPress extension for those who manage WordPress sites with regularly registered members – particularly under BuddyPress – and who need to see who the latest registered members are.

Indeed, the users page in the WordPress dashboard displays a list in alphabetical order, and it is not easy to see the latest registered users at a glance.

Fortunately, a developer working for DreamHost had the good idea to develop a plugin to display the latest subscribers to your WordPress / BuddyPress site:

Recently Registered

A very practical extension, certainly, but it is even more so with this little piece of code that I am going to share with you, and which you will need to put in your functions.php file. Indeed, with the extension, you will be able to see the latest registered on your WordPress by clicking in the “Registered” column. But this is something you will have to do every time.

So to display members by registration date by default, here is the code to insert in functions.php:

[coded]
/**
* SHOW RECENT USERS BY DEFAULT. COMPLEMENTARY SNIPPET TO THE RECENTLY REGISTERED PLUGIN!
*/
add_action( 'pre_user_query', 'tgm_order_users_by_date_registered' );
function tgm_order_users_by_date_registered($query) {
global $pagenow;

if ( ! is_admin() || 'users.php' !== $pagenow || isset( $_GET['orderby'] ) ) {
return;
}
$query->query_orderby = 'ORDER BY user_registered DESC';
}
[/coded]

If this feature helped you, don't hesitate to let me know in the comments and by sharing the article! See you soon for new news 😉

 

My latest tweets

New shorts on Blooness 👉 Vitality, longevity, weight loss: the ultimate guide to proteins in the keto-Mediterranean diet is online on Blooness. https://buff.ly/3xxNvpj
https://buff.ly/4cG2GM4

New shorts on Blooness 👉 The new premium content comes out in 48 hours, and what content! This will be the most comprehensive guide on the amount of protein to consume on a keto-Mediterranean diet. See you soon !
https://buff.ly/3L2KbFP

New Post: Combo, the best solution to put an end to the headache of scheduling and HR management https://buff.ly/4eE6JtT

Load more

Don't miss business advice by email

No spam, just an email when new content is published.

Leave a Reply

Your email address will not be published. Required fields are marked *

en_USEN