让wordpress支持email登录
我们知道,wordpress默认只支持用户名登录。本文将分享怎样让wordpress既支持用户名登录,同时支持email登录。
只需要在您的模板目录下的functions.php中添加以下代码:
以上代码使用了钩子wp_authenticate,当用户使用email登录时,会先查询出对应的用户名,实际上最后还是根据用户名来进行验证的。
只需要在您的模板目录下的functions.php中添加以下代码:
function login_with_email_address($username) { $user = get_user_by_email($username); if(!empty($user->user_login)) $username = $user->user_login; return $username; } add_action('wp_authenticate','login_with_email_address');
以上代码使用了钩子wp_authenticate,当用户使用email登录时,会先查询出对应的用户名,实际上最后还是根据用户名来进行验证的。