Just like in the topic - how to list for ex. last 4 usernames that registered on my webblog?
Just like in the topic - how to list for ex. last 4 usernames that registered on my webblog?
Making use of wpdb Class:
<?php
$usernames = $wpdb->get_results("SELECT user_login,user_nicename,display_name FROM $wpdb->users ORDER BY ID DESC LIMIT 4");
foreach ($usernames as $username) {
echo $username->user_nicename . "\n";
}Works perfectly - thank You very much!
Hi, I dont get it so which should open file *.php for Last register users? or whats? can u help me pls thank you.
This topic has been closed to new replies.