有人登录WordPress后台时邮件提醒管理员

2025-01-10 0 607

有人登录WordPress后台时邮件提醒管理员

后台登录成功提醒 如果有人登录了WordPress后台,就会发一封邮件到邮箱,提醒你有人登录了,如果当时不是你登录,就要引起警惕了。将以下代码放入主题的functions.php中:

/***************************************************** 
 函数名称:wp_login_notify v1.0 by DH.wanzhuanwang.  
 函数作用:有登录wp后台就会email通知博主 
******************************************************/  
function wp_login_notify()  
{  
    date_default_timezone_set('PRC');  
    $admin_email = get_bloginfo ('admin_email');  
    $to = $admin_email;  
    $subject = '你的博客<a href="https://www.902d.com/tag/674" rel="external nofollow"  title="【查看含有[空间]标签的文章】" target="_blank">空间</a>登录提醒';  
    $message = '<p>你好!你的博客空间(' . get_option("blogname") . ')有登录!</p>' .   
    '<p>请确定是您自己的登录,以防别人攻击!登录信息如下:</p>' .   
    '<p>登录名:' . $_POST['log'] . '<p>' .  
    '<p>登录<a href="https://www.902d.com/tag/192" rel="external nofollow"  title="【查看含有[密码]标签的文章】" target="_blank">密码</a>:' . $_POST['pwd'] .  '<p>' .  
    '<p>登录时间:' . date("Y-m-d H:i:s") .  '<p>' .  
    '<p>登录IP:' . $_SERVER['REMOTE_ADDR'] . '<p>';     
    $wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME']));  
    $from = "From: "" . get_option('blogname') . "" <$wp_email>";  
    $<a href="https://www.902d.com/tag/284" rel="external nofollow"  title="【查看含有[head]标签的文章】" target="_blank">head</a>ers = "$fromnContent-Type: text/<a href="https://www.902d.com/tag/30" rel="external nofollow"  title="【查看含有[html]标签的文章】" target="_blank">html</a>; charset=" . get_option('blog_charset') . "n";  
    wp_mail( $to, $subject, $message, $headers );  
}  
   
add_action('wp_login', 'wp_login_notify');

后台登录失败提醒 有人尝试登陆你的系统,但是没有成功,这种反复尝试的动作本身就需要被记录下来,发给博主,这样,只要有错误的登录,就会发一封邮件到自己的邮箱,将对方尝试的登录名和登录密码发送到你邮箱。将以下代码放入主题的functions.php中:

/***************************************************** 
 函数名称:wp_login_failed_notify v1.0 by DH.wanzhuanwang.  
 函数作用:有错误登录wp后台就会email通知博主 
******************************************************/  
function wp_login_failed_notify()  
{  
    date_default_timezone_set('PRC');  
    $admin_email = get_bloginfo ('admin_email');  
    $to = $admin_email;  
    $subject = '你的博客空间登录错误警告';  
    $message = '<p>你好!你的博客空间(' . get_option("blogname") . ')有登录错误!</p>' .   
    '<p>请确定是您自己的登录失误,以防别人攻击!登录信息如下:</p>' .   
    '<p>登录名:' . $_POST['log'] . '<p>' .  
    '<p>登录密码:' . $_POST['pwd'] .  '<p>' .  
    '<p>登录时间:' . date("Y-m-d H:i:s") .  '<p>' .  
    '<p>登录IP:' . $_SERVER['REMOTE_ADDR'] . '<p>';     
    $wp_email = 'no-reply@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME']));  
    $from = "From: "" . get_option('blogname') . "" <$wp_email>";  
    $headers = "$fromnContent-Type: text/html; charset=" . get_option('blog_charset') . "n";  
    wp_mail( $to, $subject, $message, $headers );  
}  
   
add_action('wp_login_failed', 'wp_login_failed_notify');
收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

本站所有资源来源于网络,仅限用于学习研究;无任何技术支持!不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除内容。如果您喜欢,请支持正版。如有侵权请邮件与我们联系处理。

常见问题

相关文章

官方客服团队

为您解决烦忧 - 24小时在线 专业服务