bp_get_the_profile_field_ids ()
生成一个以逗号分隔的字段id列表,这些字段id将在配置文件编辑时提交。
描述
返回
(字符串)
源
文件:bp-xprofile / bp-xprofile-template.php
函数bp_get_the_profile_field_ids(){全局$profile_template;数组$ field_ids = ();Foreach ($profile_template->groups as $group) {if (!$field_ids = array_merge($field_ids, wp_list_pluck($group->fields, 'id'));}} $field_ids = implode(',', wp_parse_id_list($field_ids));/** *过滤以逗号分隔的字段id列表。* * @since BuddyPress 2.1.0 * * @param string $field_ids以逗号分隔的字段id。*/返回apply_filters('bp_get_the_profile_field_ids', $field_ids);}
更新日志
版本 | 描述 |
---|---|
BuddyPress魅惑 | 介绍了。 |