wordpress评论通过审核后给留言者邮件

所有用wordpress搭建的网站,一般来说不会开启留言不用审核便可通过的功能,所以有些访客在我们的网站留言后,需要我们手动审核。那当我们站长在讲留言通过审核后,怎样让留言者及时的收到通知,并查看曾经在该网站哪个地方留言了呢?接下来的功能便是为wordpress网站添加:评论通过审核后邮件通知留言者的功能。

打开当前主题下的function.php文件,插入以下代码:

add_action('comment_unapproved_to_approved', 'wenchenhk_comment_approved');
function wenchenhk_comment_approved($comment) {
if(is_email($comment->comment_author_email)) {
$post_link = get_permalink($comment->comment_post_ID);
// 发送邮件的标题!
$title = '您在 [悠悠谷 lobg] 的评论已通过审核';
// 发送邮件的内容格式!
$body = '您在 悠悠谷 lobg]《'.get_the_title($comment->comment_post_ID).'》发表的评论:

'.$comment->comment_content.'

已通过管理员审核并显示。

您可在此查看您的评论:comment_ID ).'">点击查看';
@wp_mail($comment->comment_author_email, $title, $body, "Content-Type: text/html; charset=UTF-8");
}
}

内容结束!!
上面代码_删除掉就可以了。。

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 共3条

请登录后发表评论

    • 头像夜蝠0
    • 头像乐道主机0
    • 头像尚吾网0