Custom profile fields
-
I am having an issue getting custom profile fields to work.
I have used the following code as a wordpress plugin and a bbPress plugin:
function set_my_profile_info_keys($myarray) {
$myarray = array(
‘testfield’ => array(0, __(‘TestField’))
);
return $myarray;
}
add_filter(‘get_profile_info_keys’, ‘set_my_profile_info_keys’);
However this doesn’t show the field on a users profile to allow them to edit it. I have also tried other variations of this code I have found on this forum and others but to no avail.
Any help getting this working would be much appreciated.
- You must be logged in to reply to this topic.