Version Description
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2 to 4.2.1
- bulk-delete.php +2 -2
- include/class-bulk-delete-users.php +1 -1
- readme.txt +2 -2
bulk-delete.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Script: bulk-delete.php
|
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete users and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
|
7 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
8 |
-
Version: 4.2
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
@@ -53,7 +53,7 @@ if ( !function_exists( 'array_get' ) ) {
|
|
53 |
*/
|
54 |
class Bulk_Delete {
|
55 |
|
56 |
-
const VERSION = '4.2';
|
57 |
|
58 |
// page slugs
|
59 |
const USERS_PAGE_SLUG = 'bulk-delete-users';
|
5 |
Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
|
6 |
Description: Bulk delete users and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
|
7 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
8 |
+
Version: 4.2.1
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
53 |
*/
|
54 |
class Bulk_Delete {
|
55 |
|
56 |
+
const VERSION = '4.2.1';
|
57 |
|
58 |
// page slugs
|
59 |
const USERS_PAGE_SLUG = 'bulk-delete-users';
|
include/class-bulk-delete-users.php
CHANGED
@@ -10,7 +10,7 @@ class Bulk_Delete_Users {
|
|
10 |
/**
|
11 |
* Render delete users box
|
12 |
*/
|
13 |
-
function render_delete_users_box() {
|
14 |
|
15 |
if ( Bulk_Delete_Util::is_users_box_hidden( Bulk_Delete::BOX_USERS ) ) {
|
16 |
printf( __('This section just got enabled. Kindly <a href = "%1$s">refresh</a> the page to fully enable it.', 'bulk-delete' ), 'tools.php?page=' . Bulk_Delete::USERS_PAGE_SLUG );
|
10 |
/**
|
11 |
* Render delete users box
|
12 |
*/
|
13 |
+
public static function render_delete_users_box() {
|
14 |
|
15 |
if ( Bulk_Delete_Util::is_users_box_hidden( Bulk_Delete::BOX_USERS ) ) {
|
16 |
printf( __('This section just got enabled. Kindly <a href = "%1$s">refresh</a> the page to fully enable it.', 'bulk-delete' ), 'tools.php?page=' . Bulk_Delete::USERS_PAGE_SLUG );
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, mass, draft, revision, page
|
4 |
Requires at least: 3.3
|
5 |
-
Tested up to: 3.
|
6 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
7 |
-
Stable tag: 4.2
|
8 |
|
9 |
Bulk delete users based on user role and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
|
10 |
|
2 |
Contributors: sudar
|
3 |
Tags: post, comment, delete, bulk, mass, draft, revision, page
|
4 |
Requires at least: 3.3
|
5 |
+
Tested up to: 3.7.1
|
6 |
Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
|
7 |
+
Stable tag: 4.2.1
|
8 |
|
9 |
Bulk delete users based on user role and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
|
10 |
|