โดยทั่วไปเพื่อเข้าสู่ระบบผู้ใช้คุณสามารถใช้:
//Login the user
$creds = array();
$creds['user_login'] = $login;
$creds['user_password'] = $password;
if ( !empty( $remember ) ){
$creds['remember'] = true;
}
$user = wp_signon( $creds, true );
แต่นั่นเป็นเพียงเมื่อคุณมีรหัสผ่านและเข้าสู่ระบบเพื่อให้คุณสามารถสร้างแบบฟอร์มการลงทะเบียนของคุณเองและดำเนินการและสร้างผู้ใช้ด้วยตัวคุณเอง
//Only after Everything has been validated, proceed with creating the user
//Create the user
$user_pass = wp_generate_password();
$user = array(
'user_login' => $username,
'user_pass' => $user_pass,
'first_name' => $firstname,
'last_name' => $lastname,
'user_email' => $email
);
$user_id = wp_insert_user( $user );
/*Send e-mail to admin and new user -
You could create your own e-mail instead of using this function*/
wp_new_user_notification( $user_id, $user_pass );
และที่นี่เรามีทั้งการเข้าสู่ระบบและรหัสผ่านเพื่อให้คุณสามารถเข้าสู่ระบบผู้ใช้
หวังว่านี่จะช่วยได้