gpt4 book ai didi

mysql - 将用户注册从表 wp_users 更改为新的自制表

转载 作者:行者123 更新时间:2023-11-29 13:33:57 25 4
gpt4 key购买 nike

当用户注册时,数据将进入标准 wp_users 表。但我创建了一个新表,我想将所有(新)注册用户存储在其中。我怎样才能改变它?

最佳答案

add_action('user_register', 'myplugin_registration_save');
function myplugin_registration_save( $user_id ) {

// get the POST values and insert into the custom table
if ( isset( $_POST['first_name'] ) ) {
// save into the custom table created
}

}

这不会阻止在 WordPress 上创建用户,但您可以将用户数据插入到自定义表中。这对你有用吗?

关于mysql - 将用户注册从表 wp_users 更改为新的自制表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19026903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com