Skip to content

Instantly share code, notes, and snippets.

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 pnommensen/27e67b2e81cdd311d589 to your computer and use it in GitHub Desktop.
Save pnommensen/27e67b2e81cdd311d589 to your computer and use it in GitHub Desktop.
WordPress functions.php 403 status incorrect login
function my_login_failed_403() {
status_header( 403 );
}
add_action( 'wp_login_failed', 'my_login_failed_403' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment