How To Login To WordPress With An Email Address (Enabling Email Addresses)

Login To WordPress With Your Email Address

    WordPress by default does not allow registered website users to login using their provided email addresses.

However there’s a simple code that will provide all users of your WordPress blog or website the luxury of logging in using their email address or user name.

  • Before you use this snippet, which is commonly used by many WordPress website owners, be aware that for a secure website, it is never recommended to let anyone else know your administrative login name, therefore if someone knows your personal email address which is used to login, they have a head start at figuring out your password. But then again, if you are use proper password guidelines you are statistically in good shape. We use it from time to time!

Down Copy and paste the code below into your functions.php folder.

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');

Sean Doyle

Sean is a distinguished tech author and entrepreneur with over 20 years of extensive experience in cybersecurity, privacy, malware, Google Analytics, online marketing, and various other tech domains. His expertise and contributions to the industry have been recognized in numerous esteemed publications. Sean is widely acclaimed for his sharp intellect and innovative insights, solidifying his reputation as a leading figure in the tech community. His work not only advances the field but also helps businesses and individuals navigate the complexities of the digital world.

2 Responses

  1. March 26, 2013

    […] login.” Well – I have certainly not enabled email login to my WP site so I found an entry at http://botcrawl.com/how-to-login-to-wordpress-with-an-email-address/ which describes how to do that. Please note that I updated wp-includesfunctions.php (under t WP […]

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.