Getting additional user data
-
I used:
add_filter('get_profile_info_keys', 'get_profile_info_keys_personal');
to add more fields to the registration. But I don’t know how or can’t seam to find a way to get this data.I thought I could use
$user = new BB_User($user_id);
and then use$user["new_field"]
, but after I didvar_dump($user)
, I couldn’t find it in there. But it does appear in that user’s profile!How can I access the new values in get_profile_info_keys for a particular user?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.