/**
*WordPress 移除忘记密码链接
*https://www.weixiaoduo.com/remove-lostpassword-text/
*/
functionBing_remove_lostpassword_text($translations,$text,$domain){
if($text=='Lost your password?'&&$domain=='default')return;
return$translations;
}
add_filter('gettext','Bing_remove_lostpassword_text',10,3);