อัปเดต:
ฉันได้สร้างปลั๊กอินสำหรับการเข้าสู่ระบบการลงทะเบียนและรับรหัสผ่านด้วยอีเมล https://wordpress.org/plugins/smart-wp-login/
ตอบสั้น ๆ คุณสามารถกำหนดค่า WordPress ให้เข้าสู่ระบบด้วยอีเมล
สามขั้นตอน:
- ลบฟังก์ชั่นการตรวจสอบเริ่มต้น
- เพิ่มฟังก์ชั่นการพิสูจน์ตัวตนที่กำหนดเอง
- เปลี่ยนข้อความ "ชื่อผู้ใช้" ใน wp-login.php เป็น "อีเมล"
One Note:
ลบฟังก์ชั่นการพิสูจน์ตัวตนเริ่มต้นของ WordPress
WordPress ใช้ตัวกรอง " รับรองความถูกต้อง " เพื่อทำการตรวจสอบเพิ่มเติมในการเข้าสู่ระบบของผู้ใช้
remove_filter('authenticate', 'wp_authenticate_username_password', 20);
เพิ่มฟังก์ชั่นการพิสูจน์ตัวตนที่กำหนดเอง
add_filter('authenticate', function($user, $email, $password){
//Check for empty fields
if(empty($email) || empty ($password)){
//create new error object and add errors to it.
$error = new WP_Error();
if(empty($email)){ //No email
$error->add('empty_username', __('<strong>ERROR</strong>: Email field is empty.'));
}
else if(!filter_var($email, FILTER_VALIDATE_EMAIL)){ //Invalid Email
$error->add('invalid_username', __('<strong>ERROR</strong>: Email is invalid.'));
}
if(empty($password)){ //No password
$error->add('empty_password', __('<strong>ERROR</strong>: Password field is empty.'));
}
return $error;
}
//Check if user exists in WordPress database
$user = get_user_by('email', $email);
//bad email
if(!$user){
$error = new WP_Error();
$error->add('invalid', __('<strong>ERROR</strong>: Either the email or password you entered is invalid.'));
return $error;
}
else{ //check password
if(!wp_check_password($password, $user->user_pass, $user->ID)){ //bad password
$error = new WP_Error();
$error->add('invalid', __('<strong>ERROR</strong>: Either the email or password you entered is invalid.'));
return $error;
}else{
return $user; //passed
}
}
}, 20, 3);
เปลี่ยนข้อความ "ชื่อผู้ใช้" ใน wp-login.php เป็น "อีเมล"
เราสามารถใช้ตัวกรองgettextเพื่อเปลี่ยนข้อความ "ชื่อผู้ใช้" เป็น "อีเมล" โดยไม่ต้องแก้ไขไฟล์หลัก
add_filter('gettext', function($text){
if(in_array($GLOBALS['pagenow'], array('wp-login.php'))){
if('Username' == $text){
return 'Email';
}
}
return $text;
}, 20);
ฉันได้เขียนบทความโดยละเอียดที่บล็อกของฉันที่http://www.thebinary.in/blog/wordpress-login-using-email/