bp_xprofile_get_field_types ()
获取所有xprofile字段类型的详细信息。
描述
返回
(数组)键/值对(字段类型=>类名)。
源
文件:bp-xprofile / bp-xprofile-functions.php
函数bp_xprofile_get_field_types(){$ =字段数组(“复选框”= >“BP_XProfile_Field_Type_Checkbox”,“datebox”= >“BP_XProfile_Field_Type_Datebox”,“multiselectbox”= >“BP_XProfile_Field_Type_Multiselectbox”,“数量”= >“BP_XProfile_Field_Type_Number”,“url”= >“BP_XProfile_Field_Type_URL”,“广播”= >“BP_XProfile_Field_Type_Radiobutton”,“选择框”= >“BP_XProfile_Field_Type_Selectbox”、“文本区域”= >“BP_XProfile_Field_Type_Textarea”,“文本框”= >“BP_XProfile_Field_Type_Textbox”,“电话”= >“BP_XProfile_Field_Type_Telephone”,“性别”= >“BP_XProfile_Field_Type_Gender”,“社交网络”= >“BP_XProfile_Field_Type_Social_Networks”,);/** *过滤所有xprofile字段类型的列表。* *如果你在插件中添加了自定义字段类型,请在此过滤器中注册。* * @since BuddyPress 2.0.0 * * @param array $fields字段类型/类名对的数组。*/返回apply_filters('bp_xprofile_get_field_types', $fields);}
更新日志
版本 | 描述 |
---|---|
BuddyPress 2.0.0 | 介绍了。 |