" . __("错误", 'argon');
$info = __("提供的参数错误", 'argon');
}
else if (get_comment($id) == null){
$page_title = __('评论不存在', 'argon');
$title = "" . __("错误", 'argon');
$info = __("评论 #", 'argon') . $id . __(" 不存在", 'argon');
}
else if (get_comment_meta($id, "enable_mailnotice", true) != "true"){
$page_title = __('无需退订', 'argon');
$title = "" . __("无需退订", 'argon');
$info = __("评论 #", 'argon') . $id . __(" 的邮件通知已被退订或没有开启邮件通知", 'argon');
}
else if ($token != get_comment_meta($id, "mailnotice_unsubscribe_key", true)){
$page_title = __('退订失败', 'argon');
$title = "" . __("退订失败", 'argon');
$info = __("Token 不正确", 'argon');
}
else{
update_comment_meta($id, "enable_mailnotice", "false");
$page_title = __('退订成功', 'argon');
$title = "" . __("退订成功", 'argon');
$info = __("您已成功退订评论 #", 'argon') . $id . __(" 的邮件通知
该评论下有新回复时您将不会再收到通知", 'argon');
}
?>