我这里使用到了Comment Reply Notification和Main To Commenter两个评论回复通知插件,初始的通知邮件格式是不一样的,直接修改成一样的格式可能还需要局部的修改代码。
1. Comment Reply Notification插件
Comment Reply Notification插件可以在发表评论时选择在评论有回复时是否接收通知邮件。
为了让Comment Reply Notification的邮件主题能显示如“您在 [xxx] 上的评论刚刚被 yyy 回复了”,其源码并不支持添加回复者yyy,我们可以在wp-content/plugins/comment-reply-notification下comment-reply-notification.php的第196行后加一行新的:
197 $mail_subject = str_replace(‘[cc_author]’, $cc->comment_author, $mail_subject);
这样我们就可以使用“您在 [[blogname]] 上的评论刚刚被 [cc_author] 回复了”做为主题了。
(更多…)