允许你的WordPress站点通过用户名或邮箱登录,是提高用户体验的好方法,毕竟很多时候,用户不太记得自己注册的用户名。同时我们还要将默认的“用户名”修改为“用户名/邮箱”提示用户:
将下面的代码添加到当前主题的 functions.php 文件即可
-
- function dr_email_login_authenticate( $user, $username, $password ) {
- if ( is_a( $user, 'WP_User' ) )
- return $user;
-
- if ( !emptyempty( $username ) ) {
- $username = str_replace( '&', '&', stripslashes( $username ) );
- $user = get_user_by( 'email', $username );
- if ( isset( $user, $user->user_login, $user->user_status ) && 0 == (int) $user->user_status )
- $username = $user->user_login;
- }
-
- return wp_authenticate_username_password( null, $username, $password );
- }
- remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 );
- add_filter( 'authenticate', 'dr_email_login_authenticate', 20, 3 );
-
-
- function username_or_email_login() {
- if ( 'wp-login.php' != basename( $_SERVER['SCRIPT_NAME'] ) )
- return;
-
- ?><script type="text/javascript">
-
- if ( document.getElementById('loginform') )
- document.getElementById('loginform').childNodes[1].childNodes[1].childNodes[0].nodeValue = '<?php echo esc_js( __( '用户名/邮箱', 'email-login' ) ); ?>';
-
-
- if ( document.getElementById('login_error') )
- document.getElementById('login_error').innerHTML = document.getElementById('login_error').innerHTML.replace( '<?php echo esc_js( __( '用户名' ) ); ?>', '<?php echo esc_js( __( '用户名/邮箱' , 'email-login' ) ); ?>' );
- </script><?php
- }
- add_action( 'login_form', 'username_or_email_login' );
如果你不喜欢折腾代码,可以下载安装 WP Email Login 插件。
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!