bp_get_the_profile_field_value ()
返回XProfile字段值。
描述
返回
(字符串)
源
文件:bp-xprofile / bp-xprofile-template.php
函数bp_get_the_profile_field_value() {global $field;$field->data->value = bp_unserialize_profile_field($field->data->value);If ('gender' === $field->type) {$split_string =爆炸('_',$field->data->value);字段- >数据- >值=美元split_string [1];} /** *过滤XProfile字段值。* * @since BuddyPress 1.0.0 * * @param string $value profile字段的值。* @param string $type profile字段的类型。* @param int $id配置字段的id。*/返回apply_filters('bp_get_the_profile_field_value', $field->data->value, $field->type, $field->id);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |