Created
July 10, 2014 16:44
-
-
Save pnommensen/27e67b2e81cdd311d589 to your computer and use it in GitHub Desktop.
WordPress functions.php 403 status incorrect login
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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