Skip to content

Instantly share code, notes, and snippets.

@Pop-Code
Last active October 11, 2015 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pop-Code/3797062 to your computer and use it in GitHub Desktop.
Save Pop-Code/3797062 to your computer and use it in GitHub Desktop.
Get Facebook user data from WP_User ID
<?php
$user_id = 1; //the ID of your choice
$user_data_me = get_user_meta($user_id, 'fb_user_infos', true);
$user_data_mail = get_user_meta($user_id, 'fb_email', true);
$user_data_fb_uid = get_user_meta($user_id, 'fb_uid', true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment