How to prevent WordPress to display login errors

Paste the following line of code into your functions.php file:

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

Once you saved the file, WordPress will not display any login error messages anymore.

Thanks to WP Tuts for the tip!

Leave a Reply

Your email address will not be published. Required fields are marked *