WordPress自带一项功能,就是访客对文章发表评论后,可以在评论显示之前须经由管理员审核设置。此功能在后台 【设置】 –> 【讨论】中开启,这可以避免了一些垃圾评论对网站的影响。
对此,有评论等待审核时,WordPress会自动给网站管理员发送一封通知邮件,但是评论被管理员审核通过后,WordPress并不会给评论者发送通知,这会给正常的评论者造成一些不便。
如何让评论通过审核后,给评论者发送一封通知邮件呢?我们可以在当前主题的functions.php中添加以下PHP代码:
- /**
- *WordPress教程:评论通过审核后邮件通知评论者
- *http://wosn.net/490.html
- */
- add_action('comment_unapproved_to_approved', 'wosn_net_comment_approved');
- function wosn_net_comment_approved($comment){
- if (is_email($comment->comment_author_email)){
- $post_link = get_permalink($comment->comment_post_ID);
- $title = '您在【' . get_bloginfo('name') . '】的评论已通过审核';
- $body = '您在《<a href="' . $post_link . '" target="_blank" >' . get_the_title($comment->comment_post_ID) . '</a>》中发表的评论已通过审核!<br /><br />';
- $body .= '<strong>您的评论:</strong><br />';
- $body .= strip_tags($comment->comment_content) . '<br /><br />';
- $body .= '您可以:<a href="' . get_comment_link($comment->comment_ID) . '" target="_blank">查看您的评论</a> | <a href="' . $post_link . '#comments" target="_blank">查看其他评论</a> | <a href="' . $post_link . '" target="_blank">再次阅读文章</a><br /><br />';
- $body .= '欢迎再次光临【<a href="' . get_bloginfo('url') . '" target="_blank" title="' . get_bloginfo('description') . '">' . get_bloginfo('name') . '</a>】。';
- $body .= '<br /><br />注:此邮件为系统自动发送,请勿直接回复';
- @wp_mail($comment->comment_author_email, $title, $body, "Content-Type: text/html; charset=UTF-8");
- }
- }
可以根据自己想要回复的内容和样式来修改上面代码。
也可以Comment Approved
插件方法来设置。推荐用代码方法来实现。
评论