Categories
WordPress

WordPress: How to remove login screen error messages

In your theme’s functions.php file, add the following

add_filter('login_errors',create_function('$a', "return null;"));

This will stop the WordPress login screen from announcing that your username is correct but the password is not.