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.
$user_info = get_userdata($userid);
$username = $user_info->user_login;
$first_name = $user_info->first_name;
$last_name = $user_info->last_name;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With