我想为wordpress创建自定义注册,我需要为每个配置文件创建一个新的自定义字段。例如 phone 字段。
这是我的代码
function registration()
{
$userdata = array(
'user_login' => esc_attr($this->username),
'phone' => esc_attr($this->username),
'pre_user_email' => esc_attr($this->email),
'user_pass' => esc_attr($this->password),
'user_url' => esc_attr($this->website),
'first_name' => esc_attr($this->first_name),
'last_name' => esc_attr($this->last_name),
'nickname' => esc_attr($this->nickname),
'description' => esc_attr($this->bio),
);
手机行是我的个人资料自定义字段。 它不起作用,我尝试在管理员用户面板中创建自定义字段,它的工作原理!但我无法将数据插入该字段 phone