Version Description
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 1.0 |
Comparing to | |
See all releases |
Code changes from version 0.8 to 1.0
- bulk-delete.php +4 -3
- readme.txt +5 -2
bulk-delete.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Bulk Delete
|
|
4 |
Plugin Script: bulk-delete.php
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete posts from selected categories or tags. Use it with caution.
|
7 |
-
Version: 0
|
8 |
License: GPL
|
9 |
Author: Sudar
|
10 |
Author URI: http://sudarmuthu.com/
|
@@ -18,7 +18,8 @@ Text Domain: bulk-delete
|
|
18 |
2009-07-21 - v0.5 - Fifth release - Added option to delete all pending posts.
|
19 |
2009-07-22 - v0.6 - Sixth release - Added option to delete all scheduled posts.
|
20 |
2010-02-21 - v0.7 - Added an option to delete posts directly or send them to trash and support for translation.
|
21 |
-
2010-03-17 - v0.
|
|
|
22 |
|
23 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
24 |
|
@@ -139,7 +140,7 @@ if (!function_exists('smbd_request_handler')) {
|
|
139 |
case "bulk-delete-special":
|
140 |
$options = array();
|
141 |
|
142 |
-
$limit_to = absint($_POST['
|
143 |
|
144 |
if ($limit_to > 0) {
|
145 |
$options['showposts'] = $limit_to;
|
4 |
Plugin Script: bulk-delete.php
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete posts from selected categories or tags. Use it with caution.
|
7 |
+
Version: 1.0
|
8 |
License: GPL
|
9 |
Author: Sudar
|
10 |
Author URI: http://sudarmuthu.com/
|
18 |
2009-07-21 - v0.5 - Fifth release - Added option to delete all pending posts.
|
19 |
2009-07-22 - v0.6 - Sixth release - Added option to delete all scheduled posts.
|
20 |
2010-02-21 - v0.7 - Added an option to delete posts directly or send them to trash and support for translation.
|
21 |
+
2010-03-17 - v0.8 - Added support for private posts.
|
22 |
+
2010-06-19 - v1.0 - Proper handling of limits.
|
23 |
|
24 |
/* Copyright 2009 Sudar Muthu (email : sudar@sudarmuthu.com)
|
25 |
|
140 |
case "bulk-delete-special":
|
141 |
$options = array();
|
142 |
|
143 |
+
$limit_to = absint($_POST['smbd_special_limit_to']);
|
144 |
|
145 |
if ($limit_to > 0) {
|
146 |
$options['showposts'] = $limit_to;
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, draft, revision, page
|
4 |
Requires at least: 2.0
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 0
|
7 |
|
8 |
Bulk delete posts from selected categories or tags
|
9 |
|
@@ -59,6 +59,9 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
|
|
59 |
###v0.8 (2010-03-17)
|
60 |
* Added support for private posts.
|
61 |
|
|
|
|
|
|
|
62 |
==Readme Generator==
|
63 |
|
64 |
This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, draft, revision, page
|
4 |
Requires at least: 2.0
|
5 |
+
Tested up to: 3.0
|
6 |
+
Stable tag: 1.0
|
7 |
|
8 |
Bulk delete posts from selected categories or tags
|
9 |
|
59 |
###v0.8 (2010-03-17)
|
60 |
* Added support for private posts.
|
61 |
|
62 |
+
###v1.0 (2010-06-19)
|
63 |
+
* Proper handling of limits.
|
64 |
+
|
65 |
==Readme Generator==
|
66 |
|
67 |
This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
|