wp_create_user
-
Hello,
I try to make an independant custom register page.
To add field directlty from a register page into the wpdatabase I used
$status = wp_create_user( $username, $password, $email );
It doesn’t seems to be the same to add a field previously create in redux. For exemple in the wpadmin if I create the new field “address” like below, it’s not working :
$status = wp_create_user( $username, $password, $email; $address );
Any ideas ?
- The topic ‘wp_create_user’ is closed to new replies.