Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9162709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:16:33+00:00 2026-06-17T14:16:33+00:00

Hi as I mentioned in last question that I am learning class and method

  • 0

Hi as I mentioned in last question that I am learning class and method in php so I have another problem to understand how to use this query method to output the result in theme.

I am trying with WordPress at the moment so please consider it. However it is not too generic with WordPress rather the logic.

<?php

class get_user_widget
{

    // other mentods are here which is not related to below method

    public static function get_users() {
        global $wpdb;        

        $query = "SELECT id, user_login FROM $wpdb->users ORDER BY user_registered DESC";
        $users = $wpdb->get_results($query);

        // here I am using foreach so is it okay or while loop is right to use?
        foreach ($users as $users)
            $rs[] = $users;

        return count($rs) ? $rs : array();

    }

}

?>

So how can I use this in theme to render the output list of user by registered date? I have checked with print_r() and connection and everything is fine and getting output in array but need to use html.

Thanks a lot..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T14:16:35+00:00Added an answer on June 17, 2026 at 2:16 pm

    The class can be used like this:

    $array = get_user_widget::get_users();
    echo "<ul>";
    foreach($array as $user) {
    echo "<li>".$user->user_login."</li>";
    }
    echo "</ul>";
    

    EDIT:

    class get_user_widget
    {
    
        public static function get_users() {
            global $wpdb;        
    
            $query = "SELECT id, user_login FROM $wpdb->users ORDER BY user_registered DESC";
            $users = $wpdb->get_results($query);
    
    
            if(!empty($users)) {
                 return $users;
            }
            else {
                 $fakeuser = new stdClass();
                 $fakeuser->user_login = "No users in database";
                 return array($fakeuser);
            }
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

somebody mentioned that the function (in this case a method) below is no good
I wrongly worded my last question so I'm going to retry this. I am
Assuming that I have to write to a binary file. I can use the
this is correlated to a question I asked earlier (question) I have a list
Following up from my last question does anyone know how I can use a
Question: Hello All, Sorry that this is kind of a noob question. I just
I can't seem to be able to understand this, i have this code inside
A question exactly like this was asked last year, but this question was for
As I mentioned in a question last week, I'm working with @coreyward 's excellent
Variations of this question have been asked before, but it seems like the issue

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.