Title: Register Plus question
Last modified: August 19, 2016

---

# Register Plus question

 *  [jam0r](https://wordpress.org/support/users/jam0r/)
 * (@jam0r)
 * [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/)
 * I’ve got register plus installed on my site and its great however I was just 
   wondering if there was a simple way to out put the custom fields data onto a 
   page?
 * For exaple I have custom fields for Processor, Motherboard, Memory etc.. and 
   would like to have them listed for each user on this page – [http://www.obs-gsw.co.uk/v2/?page_id=8](http://www.obs-gsw.co.uk/v2/?page_id=8)
 * Is this possible?

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

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/#post-1077005)
 * Try
 *     ```
       //$user_id = set your user id here
       $user = get_userdata($user_id);
       echo "<pre>"; print_r($user); echo "</pre>";
       echo 'processor value is: ' . $user->processor; //processor should be replaced by whatever meta_key is used with Register Plus Data
       ```
   
 * Also look through these threads:
    [http://wordpress.org/tags/register-plus](http://wordpress.org/tags/register-plus)
 *  Thread Starter [jam0r](https://wordpress.org/support/users/jam0r/)
 * (@jam0r)
 * [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/#post-1077069)
 * total newbie here!
 * Where would I put that, I assume not in the page editor?
 *  Thread Starter [jam0r](https://wordpress.org/support/users/jam0r/)
 * (@jam0r)
 * [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/#post-1077071)
 * ok managed to sort that out..
 * Now have it listing the info for myself – [http://www.obs-gsw.co.uk/v2/?page_id=8](http://www.obs-gsw.co.uk/v2/?page_id=8)
   which is great
 * Just the next step to shove that in a loop, any suggestions?
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/#post-1077081)
 * > Just the next step to shove that in a loop, any suggestions?
 * Shove that in what kind of loop?
 * This gets all users
 *     ```
       $blogusers = get_users_of_blog();
       if ($blogusers) {
       foreach ($blogusers as $bloguser) {
       $user = get_userdata($bloguser->user_id);
       echo 'User ID ' . $user->ID . ' ' . $user->user_firstname . ' processor value ' . $user->processor;
       }
       }
       ```
   

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

The topic ‘Register Plus question’ is closed to new replies.

## Tags

 * [output](https://wordpress.org/support/topic-tag/output/)
 * [plus](https://wordpress.org/support/topic-tag/plus/)
 * [register](https://wordpress.org/support/topic-tag/register/)

 * 4 replies
 * 2 participants
 * Last reply from: [MichaelH](https://wordpress.org/support/users/michaelh/)
 * Last activity: [17 years ago](https://wordpress.org/support/topic/register-plus-question-1/#post-1077081)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
