Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress: Querying list_authors or Users

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #38054
    mpoisel
    Member

    So I’ve been trying to create a template that will create a list of user names (only subscribers), their email address, and web address and I’m having no luck. I’ve been using the following code but still nothing is showing up.

    
    $args = array();
    $args[0] = 'user_firstname';
    $args[1] = 'user_lastname';
    $args[2] = 'user_email';
    $args[3] = 'user_url';?>
    'subscriber', 'fields' => $args ) ); ?>
    get_results(); ?>

    any help would be appreciated.
    Thanks in advance

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.