这个函数的访问被标记为私有。这意味着它不打算被插件或主题开发人员使用,只在其他核心功能。这里列出了它的完整性。
BP_XProfile_Field:: is_default_field (intfield_id美元)
如果字段ID是默认字段则返回。
描述
参数
- field_id美元
-
(int)(必需)要检查的字段ID。
返回
(保龄球)
源
文件:bp-xprofile /类/ class-bp-xprofile-field.php
private function is_default_field($field_id = 0){//如果没有传入,返回当前字段ID。If (empty($field_id)) {$field_id = $this->id;} $synced_fields = [bp_xprofile_firstname_field_id(), bp_xprofile_nickname_field_id(), bp_xprofile_lastname_field_id()];If (bp_get_option('bp-display-name-format') == 'first_last_name') {$synced_fields[] = bp_xprofile_lastname_field_id();} //比较和返回。Return in_array($field_id, array_filter($synced_fields));}
更新日志
版本 | 描述 |
---|---|
BuddyPress tripwire | 介绍了。 |