Здравствуйте. В BuddyPress через "Расширенные профили" добавлены некоторые поля профиля пользователя. Как получить к ним доступ для дальнейшего использования? К примеру загнать их в массив и использовать по необходимости?


Вот кажется нашел, но никак не могу понять как выводить эти поля:
function bp_the_profile_field_value() {
echo bp_get_the_profile_field_value();
}
/**
* Returns the XProfile field value.
*
* @return mixed|void
*/
function bp_get_the_profile_field_value() {
global $field;
$field->data->value = bp_unserialize_profile_field( $field->data->value );
/**
* Filters the XProfile field value.
*
* @since 1.0.0
*
* @param string $value Value for the profile field.
* @param string $type Type for the profile field.
* @param int $id ID for the profile field.
*/
return apply_filters( 'bp_get_the_profile_field_value', $field->data->value, $field->type, $field->id );
}