用户在wordpress中通过电子邮件登录无效

时间:2015-01-04 10:05:13

标签: php wordpress

我一直在尝试通过电子邮件启用用户登录。我在wordpress codexsome few blogs找到了在functions.php中编写以下代码的方法

add_action( 'wp_authenticate', 'wp_authenticate_by_email' );

function wp_authenticate_by_email( $username ) {
$user = get_user_by( 'email', $username );

   if ( empty( $user ) ) {
       return;
   }

return $user->user_login;
}

但它对我不起作用。我发现它仍然像以前一样。

1 个答案:

答案 0 :(得分:0)

我有一个类似的问题,但是让它工作:

function my_authenticate_by_email( $user, $username, $password ) {
    //try to get user by email
    $user = get_user_by( 'email', $username );
    //validate we got a user.
    if ($user && !is_wp_error($user))
    {
        //use normal auth
        return wp_authenticate_username_password(null, $user->user_login, $password); 
    }
    //continue to next filter, like normal.
    return null;
}
add_filter( 'authenticate', 'my_authenticate_by_email', 0, 3);