You can force WordPress to hide the login error messages by adding following snippet to your theme’s functions.php file.
<?php add_filter('login_errors', create_function('$a', "return null;")); ?> |
You can force WordPress to hide the login error messages by adding following snippet to your theme’s functions.php file.
<?php add_filter('login_errors', create_function('$a', "return null;")); ?> |