bp_xprofile_get_wp_user_keys()
Returns the list of supporterd WordPress field meta keys.
Return Return
(string[]) List of supported WordPress user keys.
Source Source
File: bp-xprofile/bp-xprofile-functions.php
function bp_xprofile_get_wp_user_keys() { return array_merge( array( 'first_name', 'last_name', 'user_url', 'description' ), array_keys( wp_get_user_contact_methods() ) ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
8.0.0 | Introduced. |