Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 18, 2017 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nielslange/4f627f33df4a26fb4a0de8d9d9120990 to your computer and use it in GitHub Desktop.
Save nielslange/4f627f33df4a26fb4a0de8d9d9120990 to your computer and use it in GitHub Desktop.
Hide all login errors
<?php
//* Hide all login errors
add_filter( 'login_errors', 'nl_hide_login_errors' );
function nl_hide_login_errors(){
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment