@compixonline
Active 12 years ago
-
Henry Wright replied to the topic Pulling from existing custom fields in the forum How-to & Troubleshooting 12 years 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$keyis the name of the custom field and$user_idis the user ID of your BuddyPress member.$datawill then hold the custom field value you want for that particular…[Read more]