在WordPress中编辑登录和丢失密码屏幕上的错误

时间:2016-10-27 作者:user1857612

是否有人知道如何编辑出现在注册屏幕和密码丢失屏幕上的wordpress错误:

丢失密码屏幕错误:输入用户名或电子邮件地址。

注册屏幕错误:错误:请键入您的电子邮件地址。

谢谢:-)

1 个回复
SO网友:shajeeck

您可以使用login\\u errors过滤器挂钩更改登录屏幕中的消息,只需将此代码粘贴到主题函数中即可。php文件:

add_filter(\'login_errors\',\'login_error_message\');

function login_error_message($error){
     //check if that\'s the error you are looking for
     $pos = strpos($error, \'incorrect\');
     if (is_int($pos)) {
         //its the right error so you can overwrite it
         $error = "Wrong information";
     }
     return $error;
}
有关注册屏幕错误,请参阅本codex页https://codex.wordpress.org/Plugin_API/Filter_Reference/registration_errors