让wordpress支持email登录

我们知道,wordpress默认只支持用户名登录。本文将分享怎样让wordpress既支持用户名登录,同时支持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登录时,会先查询出对应的用户名,实际上最后还是根据用户名来进行验证的。

posted on 2012-03-25 20:23  IT技术畅销书  阅读(169)  评论(0编辑  收藏  举报

导航