Skip to content

Instantly share code, notes, and snippets.

@AtomicSmash
Created July 18, 2013 07:34
Show Gist options
  • Save AtomicSmash/6027421 to your computer and use it in GitHub Desktop.
Save AtomicSmash/6027421 to your computer and use it in GitHub Desktop.
Hide wordpress password alert
//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