WP Bulk Delete - Version 1.1.4

Version Description

  • FIXED: jQuery Error
Download this release

Release Info

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

Code changes from version 1.1.3 to 1.1.4

README.txt CHANGED
@@ -4,8 +4,8 @@ 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
 
@@ -164,6 +164,9 @@ We are working on providing more options :)
164
 
165
  == Changelog ==
166
 
 
 
 
167
  = 1.1.3 =
168
  * FIXED: Some bug fixes
169
 
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.5
8
+ Stable tag: 1.1.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
164
 
165
  == Changelog ==
166
 
167
+ = 1.1.4 =
168
+ * FIXED: jQuery Error
169
+
170
  = 1.1.3 =
171
  * FIXED: Some bug fixes
172
 
assets/js/wp-bulk-delete-admin.js CHANGED
@@ -90,7 +90,7 @@
90
 
91
  // Render Dynamic Terms.
92
  jQuery(document).ready(function() {
93
- jQuery('.post_taxonomy_radio').live( 'change', function() {
94
 
95
  var post_taxomony = jQuery(this).val();
96
  var xt_taxonomy_title = jQuery(this).attr( 'title' );
90
 
91
  // Render Dynamic Terms.
92
  jQuery(document).ready(function() {
93
+ jQuery(document).on( 'change', '.post_taxonomy_radio', function() {
94
 
95
  var post_taxomony = jQuery(this).val();
96
  var xt_taxonomy_title = jQuery(this).attr( 'title' );
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.3
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.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,7 +92,7 @@ class WP_Bulk_Delete{
92
 
93
  // Plugin version.
94
  if( ! defined( 'WPBD_VERSION' ) ){
95
- define( 'WPBD_VERSION', '1.1.3' );
96
  }
97
 
98
  // Plugin folder Path.
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.4
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.4' ); }
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.4' ); }
82
 
83
 
84
  /**
92
 
93
  // Plugin version.
94
  if( ! defined( 'WPBD_VERSION' ) ){
95
+ define( 'WPBD_VERSION', '1.1.4' );
96
  }
97
 
98
  // Plugin folder Path.