Menu Close

Remove Lost Password from WordPress Login Screen

Remove Lost Password from WordPress Login Screen

Put the Below Code into : functions.php in the CHILD Template for the site

function remove_lostpassword_text ( $text ) {
if ($text == ‘Lost your password?’){$text = ”;}
return $text;
}
add_filter( ‘gettext’, ‘remove_lostpassword_text’ );