Warning: file_put_contents(pb_book.txt): failed to open stream: No space left on device in /www/wwwroot/wpcun.com/wp-content/themes/justnews/single.php on line 31

Warning: filemtime(): stat failed for pb_book.txt in /www/wwwroot/wpcun.com/wp-content/themes/justnews/single.php on line 36
WordPress防黑小妙招:禁用密码找回功能 | 王牌文学网

WordPress防黑小妙招:禁用密码找回功能

点击阅读全文

今天给大家分享一个wordpress优化中的一个防黑小妙招,禁用密码找回功能,为什么要禁用如此优秀的功能呢?因为可能被有心之人滥用,如果你也像wordpress迷一样装了postfix发信程序,那么很有可能被无数个发信线程卡死。所以如果你只是单用户的站点,直接禁用了吧。
将下面的代码添加到你主题的functions.php中即可:

/*
*禁用密码找回功能
*http://www.wpmee.com/disable_reset_lost_password/
*/
function disable_reset_lost_password()
 {
   return false;
 }
add_filter( 'allow_password_reset', 'disable_reset_lost_password');  
                       
上一篇 2020年5月24日 18:46
下一篇 2020年5月24日 19:09

Warning: error_log(/www/wwwroot/wpcun.com/wp-content/plugins/spider-analyser/#log/log-2805.txt): failed to open stream: No space left on device in /www/wwwroot/wpcun.com/wp-content/plugins/spider-analyser/spider.class.php on line 2966