bp_get_the_profile_field_value()
Returns the XProfile field value.
Description Description
Return Return
(string)
Source Source
File: bp-xprofile/bp-xprofile-template.php
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 );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |