WP Bulk Delete - Version 1.1.3

Version Description

  • FIXED: Some bug fixes
Download this release

Release Info

Developer xylus
Plugin Icon 128x128 WP Bulk Delete
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

Files changed (2) hide show
  1. README.txt +10 -6
  2. wp-bulk-delete.php +5 -5
README.txt CHANGED
@@ -1,10 +1,11 @@
1
  === WP Bulk Delete ===
2
- Contributors: xylus
3
  Donate link: http://xylusthemes.com
4
  Tags: delete, bulk, clean, bulk delete, bulk clean, posts delete, delete all, mass delete, posts delete, delete posts, delete comments, delete users, delete meta, delete taxonomy, delete revision, wp clean, clean trash, bulk user delete, delete all, delete all users, delete all comments, delete all posts, trash, clean spam, delete with condition, delete with filter, remove
5
  Requires at least: 3.9
6
- Tested up to: 4.8
7
- Stable tag: 1.1.2
 
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -56,7 +57,7 @@ WP bulk Delete support below powerfull conditions and filters.
56
  * Delete Comments by date interval
57
  * Delete Comments by comment author. [PRO Version](https://xylusthemes.com/plugins/wp-bulk-delete/)
58
  * Delete Comments by comment post. [PRO Version](https://xylusthemes.com/plugins/wp-bulk-delete/)
59
- * Delete Commets by conditions & filters
60
 
61
  #### Delete users
62
 
@@ -163,8 +164,11 @@ We are working on providing more options :)
163
 
164
  == Changelog ==
165
 
166
- = 1.1.1 =
167
- * FIXES: Some bug fixes in delete users
 
 
 
168
 
169
  = 1.1.1 =
170
  * Added: post count after posttypes
1
  === WP Bulk Delete ===
2
+ Contributors: xylus,dharm1025
3
  Donate link: http://xylusthemes.com
4
  Tags: delete, bulk, clean, bulk delete, bulk clean, posts delete, delete all, mass delete, posts delete, delete posts, delete comments, delete users, delete meta, delete taxonomy, delete revision, wp clean, clean trash, bulk user delete, delete all, delete all users, delete all comments, delete all posts, trash, clean spam, delete with condition, delete with filter, remove
5
  Requires at least: 3.9
6
+ Requires PHP: 5.3
7
+ Tested up to: 5.4
8
+ Stable tag: 1.1.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
57
  * Delete Comments by date interval
58
  * Delete Comments by comment author. [PRO Version](https://xylusthemes.com/plugins/wp-bulk-delete/)
59
  * Delete Comments by comment post. [PRO Version](https://xylusthemes.com/plugins/wp-bulk-delete/)
60
+ * Delete Comments by conditions & filters [PRO Version](https://xylusthemes.com/plugins/wp-bulk-delete/)
61
 
62
  #### Delete users
63
 
164
 
165
  == Changelog ==
166
 
167
+ = 1.1.3 =
168
+ * FIXED: Some bug fixes
169
+
170
+ = 1.1.2 =
171
+ * FIXED: Some bug fixes in delete users
172
 
173
  = 1.1.1 =
174
  * Added: post count after posttypes
wp-bulk-delete.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WP Bulk Delete
4
  * Plugin URI: http://xylusthemes.com/plugins/wp-bulk-delete/
5
  * Description: Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options.
6
- * Version: 1.1.2
7
  * Author: Xylus Themes
8
  * Author URI: http://xylusthemes.com
9
  * License: GPL-2.0+
@@ -71,14 +71,14 @@ class WP_Bulk_Delete{
71
  *
72
  * @since 1.0.0
73
  */
74
- public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.0.0' ); }
75
 
76
  /**
77
  * A dummy magic method to prevent WP_Bulk_Delete from being unserialized.
78
  *
79
  * @since 1.0.0
80
  */
81
- public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.0.0' ); }
82
 
83
 
84
  /**
@@ -92,7 +92,7 @@ class WP_Bulk_Delete{
92
 
93
  // Plugin version.
94
  if( ! defined( 'WPBD_VERSION' ) ){
95
- define( 'WPBD_VERSION', '1.0.0' );
96
  }
97
 
98
  // Plugin folder Path.
@@ -156,7 +156,7 @@ class WP_Bulk_Delete{
156
  load_plugin_textdomain(
157
  'wp-bulk-delete',
158
  false,
159
- WPBD_PLUGIN_DIR . '/languages/'
160
  );
161
 
162
  }
3
  * Plugin Name: WP Bulk Delete
4
  * Plugin URI: http://xylusthemes.com/plugins/wp-bulk-delete/
5
  * Description: Bulk delete and cleanup anything like posts, comments, users, meta fields, taxonomy terms. with powerful filter options.
6
+ * Version: 1.1.3
7
  * Author: Xylus Themes
8
  * Author URI: http://xylusthemes.com
9
  * License: GPL-2.0+
71
  *
72
  * @since 1.0.0
73
  */
74
+ public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.1.3' ); }
75
 
76
  /**
77
  * A dummy magic method to prevent WP_Bulk_Delete from being unserialized.
78
  *
79
  * @since 1.0.0
80
  */
81
+ public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'wp-bulk-delete' ), '1.1.3' ); }
82
 
83
 
84
  /**
92
 
93
  // Plugin version.
94
  if( ! defined( 'WPBD_VERSION' ) ){
95
+ define( 'WPBD_VERSION', '1.1.3' );
96
  }
97
 
98
  // Plugin folder Path.
156
  load_plugin_textdomain(
157
  'wp-bulk-delete',
158
  false,
159
+ basename( dirname( __FILE__ ) ) . '/languages'
160
  );
161
 
162
  }