-
Notifications
You must be signed in to change notification settings - Fork 3
/
options-discussion.html
230 lines (159 loc) · 10.7 KB
/
options-discussion.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Discussion Settings</title>
<meta name="robots" content="noindex, nofollow">
<style type="text/css">
body {
font-family: arial, sans-serif;
line-height: 2;
padding: 1% 5%;
}
input,
textarea,
select {
font-family: arial, sans-serif;
font-size: 1rem;
}
fieldset,
input[type="text"],
input[type="url"],
input[type="email"],
input[type="number"],
textarea,
select {
display: block;
margin-bottom: 1em;
}
.description {
margin: -1em 0 1em;
}
legend + .description,
input[type="checkbox"] + label + .description {
margin: -0.5em 0 1em;
}
.regular-text {
width: 25em;
}
.large-text {
width: 99%;
}
a[href="index.html"] {
display: inline-block;
margin: 2em 0 1em;
}
</style>
</head>
<body>
<h1>Discussion Settings</h1>
<form>
<fieldset>
<legend>Default article settings</legend>
<p class="description">These settings may be overridden for individual articles.</p>
<input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1">
<label for="default_pingback_flag">Attempt to notify any blogs linked to from the article</label><br>
<input name="default_ping_status" type="checkbox" id="default_ping_status" value="open">
<label for="default_ping_status">Allow link notifications from other blogs (pingbacks and trackbacks) on new articles</label><br>
<input name="default_comment_status" type="checkbox" id="default_comment_status" value="open">
<label for="default_comment_status">Allow people to post comments on new articles</label>
</fieldset>
<fieldset>
<legend>Other comment settings</legend>
<input type="checkbox" name="require_name_email" id="require_name_email" value="1">
<label for="require_name_email">Comment author must fill out name and email</label><br>
<input name="comment_registration" type="checkbox" id="comment_registration" value="1">
<label for="comment_registration">Users must be registered and logged in to comment</label><br>
<input name="close_comments_for_old_posts" type="checkbox" id="close_comments_for_old_posts" value="1">
<label for="close_comments_for_old_posts">Automatically close comments on old articles: enter the number of days in the field below</label><br>
<label for="close_comments_days_old">Number of days after which comments will be automatically closed</label>
<input name="close_comments_days_old" type="number" min="0" step="1" id="close_comments_days_old" value="14" class="small-text">
<input name="thread_comments" type="checkbox" id="thread_comments" value="1">
<label for="thread_comments">Enable threaded (nested) comments: set the number of levels in the field below</label><br>
<label for="thread_comments_depth">Nested comments levels deep</label>
<select name="thread_comments_depth" id="thread_comments_depth">
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5" selected="selected">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<input name="page_comments" type="checkbox" id="page_comments" value="1">
<label for="page_comments">Break comments into pages</label><br>
<label for="comments_per_page">Number of top level comments per page</label>
<input name="comments_per_page" type="number" step="1" min="0" id="comments_per_page" value="50" class="small-text">
<label for="default_comments_page">Comments page displayed by default</label>
<select name="default_comments_page" id="default_comments_page">
<option value="newest" selected="selected">last page</option>
<option value="oldest">first page</option>
</select>
<label for="comment_order">Comments to display at the top of each page</label>
<select name="comment_order" id="comment_order">
<option value="asc" selected="selected">older comments</option>
<option value="desc">newer comments</option>
</select>
</fieldset>
<fieldset>
<legend>Notifications</legend>
<input name="comments_notify" type="checkbox" id="comments_notify" value="1">
<label for="comments_notify">Email me when anyone posts a comment</label><br>
<input name="moderation_notify" type="checkbox" id="moderation_notify" value="1">
<label for="moderation_notify">Email me when a comment is held for moderation</label><br>
</fieldset>
<fieldset>
<legend>Comment Moderation</legend>
<input name="comment_moderation" type="checkbox" id="comment_moderation" value="1">
<label for="comment_moderation">Before a comment appears, comment must be manually approved</label><br>
<input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1">
<label for="comment_whitelist">Before a comment appears, comment author must have a previously approved comment</label><br>
<label for="comment_max_links">Number of links in a comment after which it will be held in the moderation queue</label>
<input name="comment_max_links" type="number" step="1" min="0" id="comment_max_links" aria-describedby="comment-max-link-description" value="2" class="small-text">
<p class="description" id="comment-max-link-description">A common characteristic of comment spam is a large number of hyperlinks.</p>
<label for="moderation_keys">Moderation words</label>
<textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" aria-describedby="moderation-keys-description" class="large-text code"></textarea>
<p class="description" id="moderation-keys-description">When a comment contains any of these words in its content, name, URL, email, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.</p>
</fieldset>
<label for="blacklist_keys">Blacklist words</label>
<textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" aria-describedby="blacklist-keys-description" class="large-text code"></textarea>
<p class="description" id="blacklist-keys-description">When a comment contains any of these words in its content, name, URL, email, or IP, it will be put in the trash. One word or IP per line. It will match inside words, so “press” will match “WordPress”.</p>
<h2 class="title">Avatars</h2>
<input type="checkbox" id="show_avatars" aria-describedby="show-avatars-description" name="show_avatars" value="1">
<label for="show_avatars">Show Avatars</label>
<p class="description" id="show-avatars-description">An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site.</p>
<fieldset>
<legend>Avatar Maximum Rating</legend>
<input type="radio" name="avatar_rating" id="avatar-rating-01" value="G" checked="checked">
<label for="avatar-rating-01">G — Suitable for all audiences</label><br>
<input type="radio" name="avatar_rating" id="avatar-rating-02" value="PG">
<label for="avatar-rating-02">PG — Possibly offensive, usually for audiences 13 and above</label><br>
<input type="radio" name="avatar_rating" id="avatar-rating-03" value="R">
<label for="avatar-rating-03">R — Intended for adult audiences above 17</label><br>
<input type="radio" name="avatar_rating" id="avatar-rating-04" value="X">
<label for="avatar-rating-04">X — Even more mature than above</label>
</fieldset>
<fieldset>
<legend>Default Avatar</legend>
<p class="description">For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.</p>
<input type="radio" name="avatar_default" id="avatar_mystery" value="mystery" checked="checked">
<label for="avatar_mystery"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=mm&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=mm&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Mystery Person</label><br>
<input type="radio" name="avatar_default" id="avatar_blank" value="blank">
<label for="avatar_blank"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=blank&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=blank&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Blank</label><br>
<input type="radio" name="avatar_default" id="avatar_gravatar_default" value="gravatar_default">
<label for="avatar_gravatar_default"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Gravatar Logo</label><br>
<input type="radio" name="avatar_default" id="avatar_identicon" value="identicon">
<label for="avatar_identicon"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=identicon&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=identicon&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Identicon (Generated)</label><br>
<input type="radio" name="avatar_default" id="avatar_wavatar" value="wavatar">
<label for="avatar_wavatar"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=wavatar&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=wavatar&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Wavatar (Generated)</label><br>
<input type="radio" name="avatar_default" id="avatar_monsterid" value="monsterid">
<label for="avatar_monsterid"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=monsterid&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=monsterid&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> MonsterID (Generated)</label><br>
<input type="radio" name="avatar_default" id="avatar_retro" value="retro">
<label for="avatar_retro"><img alt="" src="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=32&d=retro&f=y&r=g" srcset="https://0.gravatar.com/avatar/64749b223e4c4a0c01b50ac966113617?s=64&d=retro&f=y&r=g 2x" class="avatar avatar-32 photo avatar-default" height="32" width="32"> Retro (Generated)</label>
</fieldset>
</form>
<a href="index.html">Back to overview page</a>
</body>
</html>