很简单,只需挂接一个函数comment_post
您可以在其中检查评论是否为回复,并向家长评论的作者发送电子邮件:
add_action(\'comment_post\', \'notify_author_of_reply\', 10, 2);
function notify_author_of_reply($comment_id, $approved){
if($approved){
$comment = get_comment($comment_id);
if($comment->comment_parent){
$parent_comment = get_comment($comment->comment_parent);
wp_mail($parent_comment->comment_author_email, \'Hello\', \'Dude you got a reply...\');
}
}
}
为了处理退订,您可以在选项中添加不需要通知的人的存储电子邮件(并检查
$parent_comment->comment_author_email
不在上述函数的列表中)。