Title: overview
Last modified: November 4, 2016

---

# overview

 *  Resolved [jan](https://wordpress.org/support/users/sakado/)
 * (@sakado)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/overview/)
 * Is it possible to get get an overview of the latest location of all users?

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

 *  Plugin Author [Florian Ziegler](https://wordpress.org/support/users/florianziegler/)
 * (@florianziegler)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/overview/#post-8404607)
 * Hi!
 * You could use something like this:
 *     ```
       function make_user_location_table() {
       	$users = get_users( array(
       		'fields'	=> array( 'id', 'display_name' ),
       		'meta_key'	=> 'whab_location_data'
       	));
   
       	$output = '<table><thead><tr><th>User</th><th>Location</th></tr></thead><tbody>';
   
       	foreach ( $users as $user ) {
       		$output .= '<tr><td>' . $user->display_name . '</td>';
       		$location = get_user_meta( $user->id, 'whab_location_data', true );
       		$output .= '<td>' . $location['location_name'] . '</td></tr>';
       	}
   
       	$output .= '</tbody></table>';
   
       	return $output;
       }
       add_shortcode( 'my_user_locations', 'make_user_location_table' );
       ```
   
 * Put this code into your theme’s `functions.php`. Then use the shortcode `my_user_locations`
   to display a table of all users that have set their location using Whereabouts.
    -  This reply was modified 9 years, 6 months ago by [Florian Ziegler](https://wordpress.org/support/users/florianziegler/).
    -  This reply was modified 9 years, 6 months ago by [Florian Ziegler](https://wordpress.org/support/users/florianziegler/).
 *  Thread Starter [jan](https://wordpress.org/support/users/sakado/)
 * (@sakado)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/overview/#post-8439966)
 * thx !

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

The topic ‘overview’ is closed to new replies.

 * ![](https://ps.w.org/whereabouts/assets/icon-256x256.png?rev=2943192)
 * [Whereabouts](https://wordpress.org/plugins/whereabouts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/whereabouts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/whereabouts/)
 * [Active Topics](https://wordpress.org/support/plugin/whereabouts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/whereabouts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/whereabouts/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [jan](https://wordpress.org/support/users/sakado/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/overview/#post-8439966)
 * Status: resolved