Skip to content

Instantly share code, notes, and snippets.

@AndreFCAmorim
Created November 6, 2022 15:49
Show Gist options
  • Save AndreFCAmorim/b4bbe7ff54e845741e5d4e92108d1116 to your computer and use it in GitHub Desktop.
Save AndreFCAmorim/b4bbe7ff54e845741e5d4e92108d1116 to your computer and use it in GitHub Desktop.
Hide Login Errors on WordPress
<?php
add_filter(
'login_errors',
function ( $error ) {
// Edit the line below to customize the message.
return 'Something is wrong!';
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment