@compixonline
Active 10 years, 5 months ago
-
Henry Wright replied to the topic Pulling from existing custom fields in the forum How-to & Troubleshooting 10 years, 5 months ago
get_user_meta()
will allow you to retrieve the custom field data. You’d use the function like this:$data = get_user_meta( $user_id, $key, true );
where$key
is the name of the custom field and$user_id
is the user ID of your BuddyPress member.$data
will then hold the custom field value you want for that particular…[Read more]