diff --git a/src/wp-includes/user.php b/src/wp-includes/user.php
index 69b8c35208..6e8ad04759 100644
--- a/src/wp-includes/user.php
+++ b/src/wp-includes/user.php
@@ -149,10 +149,7 @@ function wp_authenticate_username_password( $user, $username, $password ) {
 	if ( ! $user ) {
 		return new WP_Error(
 			'invalid_username',
-			__( '<strong>ERROR</strong>: Invalid username.' ) .
-			' <a href="' . wp_lostpassword_url() . '">' .
-			__( 'Lost your password?' ) .
-			'</a>'
+			__( '<strong>ERROR</strong>: Invalid username. Try again, you can also use your email address.' )
 		);
 	}
 
@@ -230,10 +227,7 @@ function wp_authenticate_email_password( $user, $email, $password ) {
 	if ( ! $user ) {
 		return new WP_Error(
 			'invalid_email',
-			__( '<strong>ERROR</strong>: Invalid email address.' ) .
-			' <a href="' . wp_lostpassword_url() . '">' .
-			__( 'Lost your password?' ) .
-			'</a>'
+                        __( '<strong>ERROR</strong>: Invalid email address. Try again, you can also use your username.' )
 		);
 	}
 
