Created
July 18, 2013 07:34
-
-
Save AtomicSmash/6027421 to your computer and use it in GitHub Desktop.
Hide wordpress password alert
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
//disable password nag | |
function stop_password_nag( $val ){ | |
return 0; | |
} | |
add_filter( 'get_user_option_default_password_nag' ,'stop_password_nag' , 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment