当用户注册数据时,会转到标准的wp_users表。 但是我创建了一个新表,我希望将所有(新的)registrerd用户存储在那里。 我怎么能改变它?
答案 0 :(得分:1)
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上创建,但您可以将用户数据插入自定义表。这对你有用吗?