• Resolved taki1

    (@taki1)


    Just like in the topic – how to list for ex. last 4 usernames that registered on my webblog?

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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";
    }

    Thread Starter taki1

    (@taki1)

    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.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to list last registered users?’ is closed to new replies.