当用户注册时,数据进入标准 wp_users 表。但是我创建了一个新表,我想在其中存储所有(新)registrerd 用户。我该如何改变呢?
问问题
530 次
1 回答
2
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 上创建用户,但您可以将用户数据插入到自定义表中。这对你有用吗?
于 2013-09-26T11:50:11.437 回答