LLMS_Admin_User_Custom_Fields::get_fields()
Retrieve an associative array of custom fields and custom field data
Return Return
(array)
Source Source
File: includes/admin/class.llms.admin.user.custom.fields.php
public function get_fields() {
$this->fields = apply_filters_deprecated(
'lifterlms_get_user_custom_fields',
array(
array(),
),
'5.0.0',
'llms_admin_profile_fields'
);
return $this->fields;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Removed LLMS core fields and deprecate the filter usage. |
| 3.13.0 | Unknown. |
| 2.7.0 | Introduced. |