forked from xiexinhua2006/argon-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unsubscribe-comment-mailnotice.php
77 lines (76 loc) · 2.83 KB
/
unsubscribe-comment-mailnotice.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
require(preg_replace('/wp-content(.*?)$/', '', dirname( __FILE__ )) . 'wp-blog-header.php');
header('HTTP/1.1 200 OK');
$id = $_GET['comment'];
$token = $_GET['token'];
if (get_comment($id) == null){
$page_title = '评论不存在';
$title = "<i class='fa fa-close' style='color: #f5365c;margin-right: 12px;'></i>错误";
$info = "评论 #" . $id . " 不存在";
}
else if (get_comment_meta($id, "enable_mailnotice", true) != "true"){
$page_title = '无需退订';
$title = "<i class='fa fa-info-circle' style='color: #11cdef;margin-right: 12px;'></i>无需退订";
$info = "评论 #" . $id . " 的邮件通知已被退订或没有开启邮件通知";
}
else if ($token != get_comment_meta($id, "mailnotice_unsubscribe_key", true)){
$page_title = '退订失败';
$title = "<i class='fa fa-close' style='color: #f5365c;margin-right: 12px;'></i>退订失败";
$info = "Token 不正确";
}
else{
update_comment_meta($id, "enable_mailnotice", "false");
$page_title = '退订成功';
$title = "<i class='fa fa-check' style='color: #2dce89;margin-right: 12px;'></i>退订成功";
$info = "您已成功退订评论 #" . $id . " 的邮件通知<br>该评论下有新回复时您将不会再收到通知";
}
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link href="<?php bloginfo('template_url'); ?>/assets/vendor/nucleo/css/nucleo.css" rel="stylesheet">
<link href="<?php bloginfo('template_url'); ?>/assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link type="text/css" href="<?php bloginfo('template_url'); ?>/assets/css/argon.min.css" rel="stylesheet">
<script src="<?php bloginfo('template_url'); ?>/assets/vendor/jquery/jquery.min.js"></script>
<script src="<?php bloginfo('template_url'); ?>/assets/vendor/bootstrap/bootstrap.min.js"></script>
<script src="<?php bloginfo('template_url'); ?>/assets/js/argon.min.js"></script>
<title><?php echo $page_title; ?></title>
</head>
<body>
<div class="position-relative">
<section class="section section-lg section-shaped pb-250" style="height: 100vh !important;">
<div class="shape shape-style-1 shape-default">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="card main-card shadow">
<div class="display-3 text-black"><?php echo $title; ?></div>
<p class="lead text-black"><?php echo $info; ?></p>
</div>
</section>
</div>
</body>
</html>
<style>
body{
overflow: hidden;
}
.main-card {
width: 700px;
max-width: calc(100vw - 50px);
margin: auto;
padding: 40px 50px;
position: fixed;
left: 50vw;
top: 50vh;
transform: translate(-50% , calc(-50% - 60px));
}
</style>