Version Description
- Documentation update
Download this release
Release Info
Developer | nkuttler |
Plugin | Delete Pending Comments |
Version | 0.2.1.1 |
Comparing to | |
See all releases |
Code changes from version 0.2.1 to 0.2.1.1
- delete-pending-comments.php +1 -1
- index.html +167 -0
- readme.txt +28 -34
delete-pending-comments.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.nkuttler.de/wordpress/delete-pending-comments/
|
|
5 |
Author: Nicolas Kuttler
|
6 |
Author URI: http://www.nkuttler.de/
|
7 |
Description: A quick way to delete all pending comments. Useful for victims of spammer attacks.
|
8 |
-
Version: 0.2.1
|
9 |
Text Domain: delete-pending-comments
|
10 |
*/
|
11 |
|
5 |
Author: Nicolas Kuttler
|
6 |
Author URI: http://www.nkuttler.de/
|
7 |
Description: A quick way to delete all pending comments. Useful for victims of spammer attacks.
|
8 |
+
Version: 0.2.1.1
|
9 |
Text Domain: delete-pending-comments
|
10 |
*/
|
11 |
|
index.html
ADDED
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2 |
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3 |
+
<html>
|
4 |
+
<head>
|
5 |
+
<title>Readme</title>
|
6 |
+
</head>
|
7 |
+
<style type="text/css">
|
8 |
+
<!--
|
9 |
+
body {
|
10 |
+
font-family: Lucida Grande, Verdana, sans-serif;
|
11 |
+
}
|
12 |
+
|
13 |
+
code {
|
14 |
+
font-size: 1.3em
|
15 |
+
}
|
16 |
+
|
17 |
+
div.success {
|
18 |
+
background: #0f0;
|
19 |
+
width: 50%;
|
20 |
+
margin: 0 auto;
|
21 |
+
padding: 1px 10px;
|
22 |
+
border: 3px solid #0d0;
|
23 |
+
}
|
24 |
+
|
25 |
+
div.error {
|
26 |
+
padding: 1px 10px;
|
27 |
+
margin: 30px auto;
|
28 |
+
}
|
29 |
+
|
30 |
+
div.error p {
|
31 |
+
font-weight: bold;
|
32 |
+
}
|
33 |
+
|
34 |
+
div.error ul {
|
35 |
+
list-style: square;
|
36 |
+
}
|
37 |
+
|
38 |
+
div.fatal {
|
39 |
+
background: #faa;
|
40 |
+
border: 3px solid #d00;
|
41 |
+
}
|
42 |
+
|
43 |
+
div.warning {
|
44 |
+
background: #f60;
|
45 |
+
border: 3px solid #e40;
|
46 |
+
}
|
47 |
+
|
48 |
+
div.note {
|
49 |
+
background: #5cf;
|
50 |
+
border: 3px solid #3ad;
|
51 |
+
}
|
52 |
+
|
53 |
+
-->
|
54 |
+
</style>
|
55 |
+
<body>
|
56 |
+
<div class='note error'><p>Notes:</p>
|
57 |
+
<ul class='note error'>
|
58 |
+
<li>No <code>== Upgrade Notice ==</code> section was found</li>
|
59 |
+
</ul>
|
60 |
+
</div> <hr />
|
61 |
+
|
62 |
+
<h1>Delete Pending Comments</h1>
|
63 |
+
|
64 |
+
<p><em>A quick way to delete all pending comments. Useful for victims of spammer attacks.</em></p>
|
65 |
+
|
66 |
+
<hr />
|
67 |
+
|
68 |
+
<p>
|
69 |
+
<strong>Contributors:</strong> <a href="http://www.nkuttler.de/">nkuttler</a>, <a href="http://www.nicolaskuttler.de">Nicolas Kuttler (de)</a><br />
|
70 |
+
<strong>Donate link:</strong> <a href="http://www.nkuttler.de/wordpress/donations/">http://www.nkuttler.de/wordpress/donations/</a> <br />
|
71 |
+
<strong>Tags:</strong> <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">admin</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">plugin</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">comments</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">spam</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">pending</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">delete</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">delete comments</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">mass delete</a>, <a href="http://www.nkuttler.de/wordpress/delete-pending-comments/">mass delete comments</a>, <br />
|
72 |
+
<strong>Requires at least:</strong> 2.7<br />
|
73 |
+
<strong>Tested up to:</strong> 3.0<br />
|
74 |
+
<strong>Stable tag:</strong> 0.2.1.1 </p>
|
75 |
+
|
76 |
+
<hr />
|
77 |
+
|
78 |
+
<h3>Description</h3>
|
79 |
+
<p>This plugin is a quick way to delete all pending comments. It's useful for victims of spammer attacks.</p>
|
80 |
+
|
81 |
+
<h4>My plugins</h4>
|
82 |
+
|
83 |
+
<p><a href="http://www.nkuttler.de/2010/05/21/record-movies-of-visitors/">Visitor Movies for WordPress</a>: Did you ever want to know what your visitors are really doing on your site? Watch them!</p>
|
84 |
+
|
85 |
+
<p><a href="http://www.nkuttler.de/wordpress/nktagcloud/">Better tag cloud</a>: I was pretty unhappy with the default WordPress tag cloud widget. This one is more powerful and offers a list HTML markup that is consistent with most other widgets.</p>
|
86 |
+
|
87 |
+
<p><a href="http://www.nkuttler.de/wordpress/nkthemeswitch/">Theme switch</a>: I like to tweak my main theme that I use on a variety of blogs. If you have ever done this you know how annoying it can be to break things for visitors of your blog. This plugin allows you to use a different theme than the one used for your visitors when you are logged in.</p>
|
88 |
+
|
89 |
+
<p><a href="http://www.nkuttler.de/wordpress/zero-conf-mail/">Zero Conf Mail</a>: Simple mail contact form, the way I like it. No ajax, no bloat. No configuration necessary, but possible.</p>
|
90 |
+
|
91 |
+
<p><a href="http://www.nkuttler.de/wordpress/custom-avatars-for-comments/">Custom avatars for comments</a>: Add a personal touch: Your visitors will be able to choose from the avatars you upload to your website for each and every comment they make.</p>
|
92 |
+
|
93 |
+
<p><a href="http://www.nkuttler.de/wordpress/nkmovecomments/">Move WordPress comments</a>: This plugin adds a small form to every comment on your blog. The form is only added for admins and allows you to <a href="http://www.nkuttler.de/nkmovecomments/">move comments</a> to a different post/page and to fix comment threading.</p>
|
94 |
+
|
95 |
+
<p><a href="http://www.nkuttler.de/wordpress/delete-pending-comments">Delete Pending Comments</a>: This is a plugin that lets you delete all pending comments at once. Useful for spam victims.</p>
|
96 |
+
|
97 |
+
<p><a href="http://www.nkuttler.de/wordpress/nksnow/">Snow and more</a>: This one lets you see snowflakes, leaves, raindrops, balloons or custom images fall down or float upwards on your blog.</p>
|
98 |
+
|
99 |
+
<p><a href="http://www.nkuttler.de/wordpress/nkfireworks/">Fireworks</a>: The name says it all, see fireworks on your blog!</p>
|
100 |
+
|
101 |
+
<p><a href="http://www.rhymebox.de/blog/rhymebox-widget/">Rhyming widget</a>: I wrote a little online <a href="http://www.rhymebox.com/">rhyming dictionary</a>. This is a widget to search it directly from one of your sidebars.</p> <hr />
|
102 |
+
<h3>Installation</h3>
|
103 |
+
<p>Unzip, upload to your plugin directory. You can delete the comments under the top level 'Comments' menu.</p> <hr />
|
104 |
+
<h3>Frequently Asked Questions</h3>
|
105 |
+
<p>Q: How do I delete the pending comments?<br />
|
106 |
+
A: The plugin page is located under the top level menu entry "Comments". Copy and paste the text, submit, done.</p> <hr />
|
107 |
+
<h3>Screenshots</h3>
|
108 |
+
<ol>
|
109 |
+
<li>The delete comments page (comments menu).</li>
|
110 |
+
</ol> <hr />
|
111 |
+
<h3>Changelog</h3>
|
112 |
+
<h4>0.2.1.1</h4>
|
113 |
+
|
114 |
+
<ul>
|
115 |
+
<li>Documentation update</li>
|
116 |
+
</ul>
|
117 |
+
|
118 |
+
<h4>0.2.1</h4>
|
119 |
+
|
120 |
+
<ul>
|
121 |
+
<li>Manipulate the database directly. Using WordPress functions was way too slow with 10k or more pending comments.</li>
|
122 |
+
</ul>
|
123 |
+
|
124 |
+
<h4>0.1.1.1</h4>
|
125 |
+
|
126 |
+
<ul>
|
127 |
+
<li>Fix version number...</li>
|
128 |
+
</ul>
|
129 |
+
|
130 |
+
<h4>0.1.1</h4>
|
131 |
+
|
132 |
+
<ul>
|
133 |
+
<li>Add icon by <a href="http://www.famfamfam.com">famfamfam</a> to the <a href="http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/">Admin Drop Down Menu</a>.</li>
|
134 |
+
<li>Re-organize files</li>
|
135 |
+
</ul>
|
136 |
+
|
137 |
+
<h4>0.1.0</h4>
|
138 |
+
|
139 |
+
<ul>
|
140 |
+
<li>Improve I18N, styling, layout, readability, add info</li>
|
141 |
+
</ul>
|
142 |
+
|
143 |
+
<h4>0.0.3</h4>
|
144 |
+
|
145 |
+
<ul>
|
146 |
+
<li>More small fixes</li>
|
147 |
+
</ul>
|
148 |
+
|
149 |
+
<h4>0.0.2</h4>
|
150 |
+
|
151 |
+
<ul>
|
152 |
+
<li>Small fixes</li>
|
153 |
+
</ul>
|
154 |
+
|
155 |
+
<h4>0.0.1</h4>
|
156 |
+
|
157 |
+
<ul>
|
158 |
+
<li>Initial release</li>
|
159 |
+
</ul> <hr />
|
160 |
+
|
161 |
+
<h3>Upgrade Notice</h3>
|
162 |
+
<dl>
|
163 |
+
|
164 |
+
Warning: Invalid argument supplied for foreach() in /home/nicolas/local/lib/validator.php on line 112
|
165 |
+
</dl>
|
166 |
+
|
167 |
+
|
readme.txt
CHANGED
@@ -1,46 +1,40 @@
|
|
1 |
=== Delete Pending Comments ===
|
|
|
2 |
Contributors: nkuttler
|
3 |
Author URI: http://www.nkuttler.de/
|
4 |
Plugin URI: http://www.nkuttler.de/wordpress/delete-pending-comments/
|
5 |
-
Donate link: http://www.
|
6 |
Tags: admin, plugin, comments, spam, pending, delete, delete comments, mass delete, mass delete comments
|
7 |
Requires at least: 2.7
|
8 |
-
Tested up to:
|
9 |
-
Stable tag: 0.2.1
|
10 |
|
11 |
A quick way to delete all pending comments. Useful for victims of spammer attacks.
|
12 |
|
13 |
== Description ==
|
14 |
-
<p>
|
15 |
This plugin is a quick way to delete all pending comments. It's useful for victims of spammer attacks.
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
I was pretty unhappy with the default WordPress tag cloud widget. This one is more powerful and offers a list HTML markup that is consistent with most other widgets.
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
<a href="http://www.nkuttler.de/wordpress/nkfireworks/">Fireworks</a>:
|
39 |
-
The name says it all, see fireworks on your blog!
|
40 |
-
<br/>
|
41 |
-
<a href="http://www.rhymebox.de/blog/rhymebox-widget/">Rhyming widget</a>:
|
42 |
-
I wrote a little online <a href="http://www.rhymebox.com/">rhyming dictionary</a>. This is a widget to search it directly from one of your sidebars.
|
43 |
-
</p>
|
44 |
|
45 |
== Installation ==
|
46 |
Unzip, upload to your plugin directory. You can delete the comments under the top level 'Comments' menu.
|
@@ -49,12 +43,12 @@ Unzip, upload to your plugin directory. You can delete the comments under the to
|
|
49 |
1. The delete comments page (comments menu).
|
50 |
|
51 |
== Frequently Asked Questions ==
|
52 |
-
<p>
|
53 |
Q: How do I delete the pending comments?<br />
|
54 |
A: The plugin page is located under the top level menu entry "Comments". Copy and paste the text, submit, done.
|
55 |
-
</p>
|
56 |
|
57 |
== Changelog ==
|
|
|
|
|
58 |
= 0.2.1 =
|
59 |
* Manipulate the database directly. Using WordPress functions was way too slow with 10k or more pending comments.
|
60 |
= 0.1.1.1 =
|
1 |
=== Delete Pending Comments ===
|
2 |
+
|
3 |
Contributors: nkuttler
|
4 |
Author URI: http://www.nkuttler.de/
|
5 |
Plugin URI: http://www.nkuttler.de/wordpress/delete-pending-comments/
|
6 |
+
Donate link: http://www.nkuttler.de/wordpress/donations/
|
7 |
Tags: admin, plugin, comments, spam, pending, delete, delete comments, mass delete, mass delete comments
|
8 |
Requires at least: 2.7
|
9 |
+
Tested up to: 3.0
|
10 |
+
Stable tag: 0.2.1.1
|
11 |
|
12 |
A quick way to delete all pending comments. Useful for victims of spammer attacks.
|
13 |
|
14 |
== Description ==
|
|
|
15 |
This plugin is a quick way to delete all pending comments. It's useful for victims of spammer attacks.
|
16 |
+
|
17 |
+
= My plugins =
|
18 |
+
|
19 |
+
[Visitor Movies for WordPress](http://www.nkuttler.de/2010/05/21/record-movies-of-visitors/): Did you ever want to know what your visitors are really doing on your site? Watch them!
|
20 |
+
|
21 |
+
[Better tag cloud](http://www.nkuttler.de/wordpress/nktagcloud/): I was pretty unhappy with the default WordPress tag cloud widget. This one is more powerful and offers a list HTML markup that is consistent with most other widgets.
|
22 |
+
|
23 |
+
[Theme switch](http://www.nkuttler.de/wordpress/nkthemeswitch/): I like to tweak my main theme that I use on a variety of blogs. If you have ever done this you know how annoying it can be to break things for visitors of your blog. This plugin allows you to use a different theme than the one used for your visitors when you are logged in.
|
24 |
+
|
25 |
+
[Zero Conf Mail](http://www.nkuttler.de/wordpress/zero-conf-mail/): Simple mail contact form, the way I like it. No ajax, no bloat. No configuration necessary, but possible.
|
26 |
+
|
27 |
+
[Custom avatars for comments](http://www.nkuttler.de/wordpress/custom-avatars-for-comments/): Add a personal touch: Your visitors will be able to choose from the avatars you upload to your website for each and every comment they make.
|
28 |
+
|
29 |
+
[Move WordPress comments](http://www.nkuttler.de/wordpress/nkmovecomments/): This plugin adds a small form to every comment on your blog. The form is only added for admins and allows you to [move comments](http://www.nkuttler.de/nkmovecomments/) to a different post/page and to fix comment threading.
|
30 |
+
|
31 |
+
[Delete Pending Comments](http://www.nkuttler.de/wordpress/delete-pending-comments): This is a plugin that lets you delete all pending comments at once. Useful for spam victims.
|
32 |
+
|
33 |
+
[Snow and more](http://www.nkuttler.de/wordpress/nksnow/): This one lets you see snowflakes, leaves, raindrops, balloons or custom images fall down or float upwards on your blog.
|
34 |
+
|
35 |
+
[Fireworks](http://www.nkuttler.de/wordpress/nkfireworks/): The name says it all, see fireworks on your blog!
|
36 |
+
|
37 |
+
[Rhyming widget](http://www.rhymebox.de/blog/rhymebox-widget/): I wrote a little online [rhyming dictionary](http://www.rhymebox.com/). This is a widget to search it directly from one of your sidebars.
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
== Installation ==
|
40 |
Unzip, upload to your plugin directory. You can delete the comments under the top level 'Comments' menu.
|
43 |
1. The delete comments page (comments menu).
|
44 |
|
45 |
== Frequently Asked Questions ==
|
|
|
46 |
Q: How do I delete the pending comments?<br />
|
47 |
A: The plugin page is located under the top level menu entry "Comments". Copy and paste the text, submit, done.
|
|
|
48 |
|
49 |
== Changelog ==
|
50 |
+
= 0.2.1.1 =
|
51 |
+
* Documentation update
|
52 |
= 0.2.1 =
|
53 |
* Manipulate the database directly. Using WordPress functions was way too slow with 10k or more pending comments.
|
54 |
= 0.1.1.1 =
|