wordpress设置邮件收发功能成功后,找回密码,可收找回密码的邮件,也可修改密码,但出现点问题。请看:

这是网页点击找回密码填写邮件后点击后出现的代码:
Warning: Missing argument 2 for Theme_My_Login_Custom_Email::retrieve_pass_title_filter() in /data/home/qxu1142160262/htdocs/wp-content/plugins/theme-my-login/modules/custom-email/custom-email.php on line 271 Warning: Cannot modify header information - headers already sent by (output started at /data/home/qxu1142160262/htdocs/wp-content/plugins/theme-my-login/modules/custom-email/custom-email.php:271) in /data/home/qxu1142160262/htdocs/wp-includes/pluggable.php on line 1178
请老师给我指点迷津,能详细最好,我懂一点点,谢谢了!就剩20了,对不住老师了。

第一个错误:"Warning: Missing argument 2 " 说你函数缺少参数支持,可看一下是否忘记写参数了!

第二个错误: header() 输出头信息只能在其它内容之前发送,如果你的程序执行没有问题,可以在代码中 加入 error_reporting(0); 来禁止此类信息提示!

或者使用 ob_start() ob_end_clean() (具体使用自行百度)

尝试一下吧!

更多信息可搜索 杨俊伟 博客交流
温馨提示:答案为网友推荐,仅供参考