xprofile_format_profile_field (字符串field_type美元,字符串field_value美元)
根据配置文件字段的类型格式化它。[待办事项:应该移动到过滤器]
描述
参数
- field_type美元
-
(字符串)(必需)字段类型:日期框、选择框、文本框等。
- field_value美元
-
(字符串)(必需)实际的价值。
返回
(字符串| bool)格式化值,如果值为空则为false。
源
文件:bp-xprofile / bp-xprofile-functions.php
函数xprofile_format_profile_field($field_type, $field_value) {if (empty($field_value)) {return false;} $field_value = bp_unserialize_profile_field($field_value);If ('datebox' != $field_type) {$content = $field_value;$ field_value = str_replace ( ']]>', ']]& gt,“美元内容);}返回xprofile_filter_format_field_value_by_type(stripslashes_deep($field_value), $field_type);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.0.0 | 介绍了。 |