Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created March 13, 2013 14:41
Show Gist options
  • Save eugenoprea/5152754 to your computer and use it in GitHub Desktop.
Save eugenoprea/5152754 to your computer and use it in GitHub Desktop.
Gravity Forms – Populate Name Field - Retrieving user meta information 1.
function eo_get_usermeta($meta_key)
{
$current_user = wp_get_current_user();
$ret = (($current_user instanceof WP_User) && (0 != $current_user->ID)) ?
$current_user->__get($meta_key) : '';
return $ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment