#Add the code below in functions.php
file
function change_lost_your_password ($text) { if ($text == 'Lost your password?'){ $text = 'Forgot your password?'; } return $text; } add_filter( 'gettext', 'change_lost_your_password' );
#Add the code below in functions.php
file
function change_lost_your_password ($text) { if ($text == 'Lost your password?'){ $text = 'Forgot your password?'; } return $text; } add_filter( 'gettext', 'change_lost_your_password' );