首页» 教程» Wordpress教程» WordPress评论审核邮件通知-用户交互(五十八)

WordPress评论审核邮件通知-用户交互(五十八)

Hello,嗨,大家好,我是哈喽猿。

这里是哈喽猿网

今天推送的是wordpress教程的文章,感谢您宝贵的时间阅读

为了有效控制垃圾评论,哈喽猿建议在背景后台-讨论中,必须在显示设置注释之前对其进行检查,如下图所示:

WordPress评论通过审核后邮件通知评论人

然而,在这个设置之后,一旦评论通过了审核,就没有电子邮件通知评论员了,今天我们将添加此通知功能。

代码方法

您可以根据需要修改上述代码,以实现特定的样式和内容。请注意,在修改了Functions.php文件后,您希望将其保存为UTF-8格式,否则可能会出现随机编码问题。

/**
 * WordPress 评论通过审核后邮件通知评论人
 * https://www.wpdaxue.com/comment-approved-email.html
 */
add_action('comment_unapproved_to_approved', 'wpdx_comment_approved');
function wpdx_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");
    }
}

 

插件方法

WordPress评论通过审核后邮件通知评论人

如果您发现修改代码很麻烦,也可以直接安装CommentApple插件。启用插件后,在设置-CommentApversion之后输入安装界面:

下载地址:http://wp101.net/plugins/comment-approved/

发表评论

0 评论

提供最优质的资源集合

站长留言