Title: Create a nice author listing page
Last modified: August 19, 2016

---

# Create a nice author listing page

 *  Resolved [bendrucker](https://wordpress.org/support/users/bendrucker/)
 * (@bendrucker)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/php-question-4/)
 * I want to create a nice author listing page. Here is, in my opinion, the easiest
   way to do it, although correct me if there’s an easier way. I already have styled
   my individual author pages to a point where I like the way they look. So here’s
   what I’d like to do to make the full listing.
 * Start with a list (array?) of user ID’s. So if I wanted the author page to include
   user1, then user2, then user 3, I’d put those in there. From there, I guess there’d
   need to be some type of loop where it would keep running a script for each user
   ID. Since I already have the code to style the user info, there’s no extra effort
   for that.
 * Would anyone be willing to help me out? Thanks in advance!

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

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238638)
 * From notes:
 *     ```
       <?php
       //list users of blog
       $blogusers = get_users_of_blog();
       if ($blogusers) {
       foreach ($blogusers as $bloguser) {
       $user = get_userdata($bloguser->user_id);
       //echo "<pre>"; print_r($user); echo "</pre>";
       echo 'User ID ' . $user->ID . ' ' . $user->user_firstname . ' ' . $user->user_lastname ;
       }
       }
       ?>
       ```
   
 * Also see:
    [Author Templates](http://codex.wordpress.org/Author_Templates)
 *  Thread Starter [bendrucker](https://wordpress.org/support/users/bendrucker/)
 * (@bendrucker)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238789)
 * Thank you so much. With the basic structure you gave me, I was able to create
   a great staff page. ([http://www.academicperspective.com/staff/](http://www.academicperspective.com/staff/))
 * Thanks again, I really owe you one!
 *  [variera](https://wordpress.org/support/users/variera/)
 * (@variera)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238954)
 * Very nice staff page. Could you write a short tutorial on how you did it? Please…
 * André
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238955)
 * Might look at [Author Templates](http://codex.wordpress.org/Author_Templates)
   as well as [http://www.google.com/search?q=wordpress+creating+an+authors+page](http://www.google.com/search?q=wordpress+creating+an+authors+page)
 *  [variera](https://wordpress.org/support/users/variera/)
 * (@variera)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238956)
 * I tried to make a template but I can´t figure out how to make it look as good
   as in the page above…
 * A walkthrough would be very nice…

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

The topic ‘Create a nice author listing page’ is closed to new replies.

## Tags

 * [author](https://wordpress.org/support/topic-tag/author/)
 * [loop](https://wordpress.org/support/topic-tag/loop/)
 * [php](https://wordpress.org/support/topic-tag/php/)

 * 5 replies
 * 3 participants
 * Last reply from: [variera](https://wordpress.org/support/users/variera/)
 * Last activity: [16 years, 7 months ago](https://wordpress.org/support/topic/php-question-4/#post-1238956)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
