how to get all user meta data by user ID in Wordpress?
@Boopathi Rejan nearly had it. Output all of the user meta by using the following code and then look through and find the values you
$user_info = get_user_meta($current_user->ID);
var_dump($user_info);
You can change the USERID to anything, currently this is setup to display the ID of the logged in user.