Version Description
Download this release
Release Info
Developer | sudar |
Plugin | Bulk Delete |
Version | 4.3 |
Comparing to | |
See all releases |
Code changes from version 4.2.2 to 4.3
- bulk-delete.php +33 -14
- include/class-bulk-delete-posts.php +69 -11
- languages/bulk-delete.pot +189 -200
- 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.
|
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.
|
57 |
|
58 |
// page slugs
|
59 |
const USERS_PAGE_SLUG = 'bulk-delete-users';
|
@@ -490,6 +490,7 @@ class Bulk_Delete {
|
|
490 |
// delete by cats
|
491 |
|
492 |
$delete_options = array();
|
|
|
493 |
$delete_options['selected_cats'] = array_get($_POST, 'smbd_cats');
|
494 |
$delete_options['restrict'] = array_get($_POST, 'smbd_cats_restrict', FALSE);
|
495 |
$delete_options['private'] = array_get($_POST, 'smbd_cats_private');
|
@@ -553,6 +554,7 @@ class Bulk_Delete {
|
|
553 |
// delete by taxs
|
554 |
|
555 |
$delete_options = array();
|
|
|
556 |
$delete_options['selected_taxs'] = array_get($_POST, 'smbd_taxs');
|
557 |
$delete_options['selected_tax_terms'] = array_get($_POST, 'smbd_tax_terms');
|
558 |
$delete_options['restrict'] = array_get($_POST, 'smbd_taxs_restrict', FALSE);
|
@@ -773,22 +775,27 @@ class Bulk_Delete {
|
|
773 |
*/
|
774 |
static function delete_cats($delete_options) {
|
775 |
|
|
|
|
|
776 |
$selected_cats = $delete_options['selected_cats'];
|
777 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
778 |
$private = $delete_options['private'];
|
779 |
|
780 |
if ($private == 'true') {
|
781 |
-
$options
|
782 |
-
} else {
|
783 |
-
$options = array('category__in'=>$selected_cats,'post_status'=>'publish', 'post_type'=>'post');
|
784 |
}
|
785 |
|
786 |
$limit_to = $delete_options['limit_to'];
|
787 |
|
788 |
if ($limit_to > 0) {
|
789 |
$options['showposts'] = $limit_to;
|
790 |
-
} else {
|
791 |
-
$options['nopaging'] = 'true';
|
792 |
}
|
793 |
|
794 |
$force_delete = $delete_options['force_delete'];
|
@@ -813,7 +820,12 @@ class Bulk_Delete {
|
|
813 |
$posts = $wp_query->query($options);
|
814 |
|
815 |
foreach ($posts as $post) {
|
816 |
-
|
|
|
|
|
|
|
|
|
|
|
817 |
}
|
818 |
|
819 |
return count($posts);
|
@@ -870,17 +882,19 @@ class Bulk_Delete {
|
|
870 |
}
|
871 |
|
872 |
/**
|
873 |
-
* Delete posts by custom
|
874 |
*/
|
875 |
static function delete_taxs($delete_options) {
|
876 |
|
877 |
-
|
|
|
|
|
878 |
$selected_tax_terms = $delete_options['selected_tax_terms'];
|
879 |
|
880 |
$options = array(
|
881 |
-
'post_status'=>'publish',
|
882 |
-
'post_type'
|
883 |
-
'tax_query'
|
884 |
array(
|
885 |
'taxonomy' => $selected_taxs,
|
886 |
'terms' => $selected_tax_terms,
|
@@ -925,7 +939,12 @@ class Bulk_Delete {
|
|
925 |
$posts = $wp_query->query($options);
|
926 |
|
927 |
foreach ($posts as $post) {
|
928 |
-
|
|
|
|
|
|
|
|
|
|
|
929 |
}
|
930 |
|
931 |
return count( $posts );
|
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.3
|
9 |
License: GPL
|
10 |
Author: Sudar
|
11 |
Author URI: http://sudarmuthu.com/
|
53 |
*/
|
54 |
class Bulk_Delete {
|
55 |
|
56 |
+
const VERSION = '4.3';
|
57 |
|
58 |
// page slugs
|
59 |
const USERS_PAGE_SLUG = 'bulk-delete-users';
|
490 |
// delete by cats
|
491 |
|
492 |
$delete_options = array();
|
493 |
+
$delete_options['post_type'] = array_get( $_POST, 'smbd_cat_post_type', 'post' );
|
494 |
$delete_options['selected_cats'] = array_get($_POST, 'smbd_cats');
|
495 |
$delete_options['restrict'] = array_get($_POST, 'smbd_cats_restrict', FALSE);
|
496 |
$delete_options['private'] = array_get($_POST, 'smbd_cats_private');
|
554 |
// delete by taxs
|
555 |
|
556 |
$delete_options = array();
|
557 |
+
$delete_options['post_type'] = array_get( $_POST, 'smbd_tax_post_type', 'post' );
|
558 |
$delete_options['selected_taxs'] = array_get($_POST, 'smbd_taxs');
|
559 |
$delete_options['selected_tax_terms'] = array_get($_POST, 'smbd_tax_terms');
|
560 |
$delete_options['restrict'] = array_get($_POST, 'smbd_taxs_restrict', FALSE);
|
775 |
*/
|
776 |
static function delete_cats($delete_options) {
|
777 |
|
778 |
+
// For compatibility reasons set default post type to 'post'
|
779 |
+
$post_type = array_get( $delete_options, 'post_type', 'post' );
|
780 |
$selected_cats = $delete_options['selected_cats'];
|
781 |
|
782 |
+
$options = array(
|
783 |
+
'post_type' => $post_type,
|
784 |
+
'category__in' => $selected_cats,
|
785 |
+
'post_status' => 'publish',
|
786 |
+
'nopaging' => 'true'
|
787 |
+
);
|
788 |
+
|
789 |
$private = $delete_options['private'];
|
790 |
|
791 |
if ($private == 'true') {
|
792 |
+
$options[ 'post_status' ] = 'private';
|
|
|
|
|
793 |
}
|
794 |
|
795 |
$limit_to = $delete_options['limit_to'];
|
796 |
|
797 |
if ($limit_to > 0) {
|
798 |
$options['showposts'] = $limit_to;
|
|
|
|
|
799 |
}
|
800 |
|
801 |
$force_delete = $delete_options['force_delete'];
|
820 |
$posts = $wp_query->query($options);
|
821 |
|
822 |
foreach ($posts as $post) {
|
823 |
+
// $force delete parameter to custom post types doesn't work
|
824 |
+
if ( $force_delete ) {
|
825 |
+
wp_delete_post( $post->ID );
|
826 |
+
} else {
|
827 |
+
wp_trash_post( $post->ID );
|
828 |
+
}
|
829 |
}
|
830 |
|
831 |
return count($posts);
|
882 |
}
|
883 |
|
884 |
/**
|
885 |
+
* Delete posts by custom taxonomy
|
886 |
*/
|
887 |
static function delete_taxs($delete_options) {
|
888 |
|
889 |
+
// For compatibility reasons set default post type to 'post'
|
890 |
+
$post_type = array_get( $delete_options, 'post_type', 'post' );
|
891 |
+
$selected_taxs = $delete_options['selected_taxs'];
|
892 |
$selected_tax_terms = $delete_options['selected_tax_terms'];
|
893 |
|
894 |
$options = array(
|
895 |
+
'post_status' => 'publish',
|
896 |
+
'post_type' => $post_type,
|
897 |
+
'tax_query' => array(
|
898 |
array(
|
899 |
'taxonomy' => $selected_taxs,
|
900 |
'terms' => $selected_tax_terms,
|
939 |
$posts = $wp_query->query($options);
|
940 |
|
941 |
foreach ($posts as $post) {
|
942 |
+
// $force delete parameter to custom post types doesn't work
|
943 |
+
if ( $force_delete ) {
|
944 |
+
wp_delete_post( $post->ID );
|
945 |
+
} else {
|
946 |
+
wp_trash_post( $post->ID );
|
947 |
+
}
|
948 |
}
|
949 |
|
950 |
return count( $posts );
|
include/class-bulk-delete-posts.php
CHANGED
@@ -127,22 +127,52 @@ class Bulk_Delete_Posts {
|
|
127 |
return;
|
128 |
}
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
?>
|
131 |
<!-- Category Start-->
|
132 |
-
<h4><?php _e(
|
133 |
-
|
134 |
<fieldset class="options">
|
135 |
<table class="optiontable">
|
136 |
<?php
|
137 |
-
|
138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
?>
|
140 |
<tr>
|
141 |
<td scope="row" >
|
142 |
-
<input name="smbd_cats[]" value = "<?php echo $category->cat_ID; ?>" type = "checkbox"
|
143 |
</td>
|
144 |
<td>
|
145 |
-
<label for="smbd_cats"><?php echo $category->cat_name; ?> (<?php echo $category->count . " "; _e(
|
146 |
</td>
|
147 |
</tr>
|
148 |
<?php
|
@@ -156,7 +186,9 @@ class Bulk_Delete_Posts {
|
|
156 |
<label for="smbd_cats_all"><?php _e("All Categories", 'bulk-delete') ?></label>
|
157 |
</td>
|
158 |
</tr>
|
|
|
159 |
|
|
|
160 |
<tr>
|
161 |
<td colspan="2">
|
162 |
<h4><?php _e("Choose your filtering options", 'bulk-delete'); ?></h4>
|
@@ -368,7 +400,13 @@ class Bulk_Delete_Posts {
|
|
368 |
return;
|
369 |
}
|
370 |
|
371 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
|
373 |
$taxs = get_taxonomies(array(
|
374 |
'public' => true,
|
@@ -376,6 +414,7 @@ class Bulk_Delete_Posts {
|
|
376 |
), 'objects'
|
377 |
);
|
378 |
|
|
|
379 |
if (count($taxs) > 0) {
|
380 |
foreach ($taxs as $tax) {
|
381 |
$terms = get_terms($tax->name);
|
@@ -387,10 +426,29 @@ class Bulk_Delete_Posts {
|
|
387 |
|
388 |
if ( count( $terms_array ) > 0 ) {
|
389 |
?>
|
390 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
<h4><?php _e("Select the taxonomies whose post you want to delete", 'bulk-delete') ?></h4>
|
392 |
|
393 |
-
<fieldset class="options">
|
394 |
<table class="optiontable">
|
395 |
<?php
|
396 |
foreach ($terms_array as $tax => $terms) {
|
@@ -409,6 +467,7 @@ class Bulk_Delete_Posts {
|
|
409 |
</table>
|
410 |
|
411 |
<h4><?php _e("The selected taxonomy has the following terms. Select the terms whose post you want to delete", 'bulk-delete') ?></h4>
|
|
|
412 |
<?php
|
413 |
foreach ($terms_array as $tax => $terms) {
|
414 |
?>
|
@@ -431,7 +490,6 @@ class Bulk_Delete_Posts {
|
|
431 |
<?php
|
432 |
}
|
433 |
?>
|
434 |
-
</table>
|
435 |
<table class="optiontable">
|
436 |
<tr>
|
437 |
<td colspan="2">
|
@@ -863,7 +921,7 @@ class Bulk_Delete_Posts {
|
|
863 |
<p>
|
864 |
<span class = "bd-post-status-pro" style = "color:red">
|
865 |
<?php _e( 'You need "Bulk Delete by Custom Field" Addon, to delete post by custom field.', 'bulk-delete'); ?>
|
866 |
-
<a href = "http://sudarmuthu.com/wordpress/pro-addons">Buy now</a>
|
867 |
</span>
|
868 |
</p>
|
869 |
<!-- Custom Field box end-->
|
127 |
return;
|
128 |
}
|
129 |
|
130 |
+
$types = get_post_types( array(
|
131 |
+
'public' => true,
|
132 |
+
'_builtin' => false
|
133 |
+
), 'names'
|
134 |
+
);
|
135 |
+
|
136 |
+
array_unshift( $types, 'post' );
|
137 |
?>
|
138 |
<!-- Category Start-->
|
139 |
+
<h4><?php _e( 'Select the post type whose category posts you want to delete', 'bulk-delete' ); ?></h4>
|
|
|
140 |
<fieldset class="options">
|
141 |
<table class="optiontable">
|
142 |
<?php
|
143 |
+
foreach ( $types as $type ) {
|
144 |
+
?>
|
145 |
+
<tr>
|
146 |
+
<td scope="row" >
|
147 |
+
<input name="smbd_cat_post_type" value = "<?php echo $type; ?>" type = "radio" class = "smbd_cat_post_type" <?php checked( $type, 'post' ); ?>>
|
148 |
+
</td>
|
149 |
+
<td>
|
150 |
+
<label for="smbd_cat_post_type"><?php echo $type; ?> </label>
|
151 |
+
</td>
|
152 |
+
</tr>
|
153 |
+
<?php
|
154 |
+
}
|
155 |
+
?>
|
156 |
+
</table>
|
157 |
+
|
158 |
+
<h4><?php _e( 'Select the categories whose post you want to delete', 'bulk-delete' ); ?></h4>
|
159 |
+
<p><?php _e( 'Note: The post count below for each category is the total number of posts in that category, irrespective of post type', 'bulk-delete' ); ?></p>
|
160 |
+
<?php
|
161 |
+
$categories = get_categories( array(
|
162 |
+
'hide_empty' => false
|
163 |
+
)
|
164 |
+
);
|
165 |
+
?>
|
166 |
+
<table class="optiontable">
|
167 |
+
<?php
|
168 |
+
foreach ( $categories as $category ) {
|
169 |
?>
|
170 |
<tr>
|
171 |
<td scope="row" >
|
172 |
+
<input name="smbd_cats[]" value = "<?php echo $category->cat_ID; ?>" type = "checkbox" >
|
173 |
</td>
|
174 |
<td>
|
175 |
+
<label for="smbd_cats"><?php echo $category->cat_name; ?> (<?php echo $category->count . " "; _e( 'Posts', 'bulk-delete' ); ?>)</label>
|
176 |
</td>
|
177 |
</tr>
|
178 |
<?php
|
186 |
<label for="smbd_cats_all"><?php _e("All Categories", 'bulk-delete') ?></label>
|
187 |
</td>
|
188 |
</tr>
|
189 |
+
</table>
|
190 |
|
191 |
+
<table class="optiontable">
|
192 |
<tr>
|
193 |
<td colspan="2">
|
194 |
<h4><?php _e("Choose your filtering options", 'bulk-delete'); ?></h4>
|
400 |
return;
|
401 |
}
|
402 |
|
403 |
+
$types = get_post_types( array(
|
404 |
+
'public' => true,
|
405 |
+
'_builtin' => false
|
406 |
+
), 'names'
|
407 |
+
);
|
408 |
+
|
409 |
+
array_unshift( $types, 'post' );
|
410 |
|
411 |
$taxs = get_taxonomies(array(
|
412 |
'public' => true,
|
414 |
), 'objects'
|
415 |
);
|
416 |
|
417 |
+
$terms_array = array();
|
418 |
if (count($taxs) > 0) {
|
419 |
foreach ($taxs as $tax) {
|
420 |
$terms = get_terms($tax->name);
|
426 |
|
427 |
if ( count( $terms_array ) > 0 ) {
|
428 |
?>
|
429 |
+
<!-- Custom tax Start-->
|
430 |
+
<h4><?php _e( 'Select the post type whose taxonomy posts you want to delete', 'bulk-delete' ); ?></h4>
|
431 |
+
|
432 |
+
<fieldset class="options">
|
433 |
+
<table class="optiontable">
|
434 |
+
<?php
|
435 |
+
foreach ( $types as $type ) {
|
436 |
+
?>
|
437 |
+
<tr>
|
438 |
+
<td scope="row" >
|
439 |
+
<input name="smbd_tax_post_type" value = "<?php echo $type; ?>" type = "radio" class = "smbd_tax_post_type" <?php checked( $type, 'post' ); ?>>
|
440 |
+
</td>
|
441 |
+
<td>
|
442 |
+
<label for="smbd_tax_post_type"><?php echo $type; ?> </label>
|
443 |
+
</td>
|
444 |
+
</tr>
|
445 |
+
<?php
|
446 |
+
}
|
447 |
+
?>
|
448 |
+
</table>
|
449 |
+
|
450 |
<h4><?php _e("Select the taxonomies whose post you want to delete", 'bulk-delete') ?></h4>
|
451 |
|
|
|
452 |
<table class="optiontable">
|
453 |
<?php
|
454 |
foreach ($terms_array as $tax => $terms) {
|
467 |
</table>
|
468 |
|
469 |
<h4><?php _e("The selected taxonomy has the following terms. Select the terms whose post you want to delete", 'bulk-delete') ?></h4>
|
470 |
+
<p><?php _e( 'Note: The post count below for each term is the total number of posts in that term, irrespective of post type', 'bulk-delete' ); ?></p>
|
471 |
<?php
|
472 |
foreach ($terms_array as $tax => $terms) {
|
473 |
?>
|
490 |
<?php
|
491 |
}
|
492 |
?>
|
|
|
493 |
<table class="optiontable">
|
494 |
<tr>
|
495 |
<td colspan="2">
|
921 |
<p>
|
922 |
<span class = "bd-post-status-pro" style = "color:red">
|
923 |
<?php _e( 'You need "Bulk Delete by Custom Field" Addon, to delete post by custom field.', 'bulk-delete'); ?>
|
924 |
+
<a href = "http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-by-custom-field">Buy now</a>
|
925 |
</span>
|
926 |
</p>
|
927 |
<!-- Custom Field box end-->
|
languages/bulk-delete.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Bulk Delete package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Bulk Delete 4.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
-
"POT-Creation-Date: 2013-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -29,10 +29,7 @@ msgid "About Plugin"
|
|
29 |
msgstr ""
|
30 |
|
31 |
#: bulk-delete.php:147 bulk-delete.php:202
|
32 |
-
msgid ""
|
33 |
-
"This plugin allows you to delete posts in bulk from selected categories, "
|
34 |
-
"tags, custom taxonomies or by post status like drafts, pending posts, "
|
35 |
-
"scheduled posts etc."
|
36 |
msgstr ""
|
37 |
|
38 |
#: bulk-delete.php:154 bulk-delete.php:209
|
@@ -151,9 +148,9 @@ msgstr ""
|
|
151 |
msgid "Users from the selected userrole are scheduled for deletion."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: bulk-delete.php:474 bulk-delete.php:
|
155 |
-
#: bulk-delete.php:
|
156 |
-
#: bulk-delete.php:
|
157 |
msgid "See the full list of <a href = \"%s\">scheduled tasks</a>"
|
158 |
msgstr ""
|
159 |
|
@@ -163,84 +160,83 @@ msgid_plural "Deleted %d users from the selected role"
|
|
163 |
msgstr[0] ""
|
164 |
msgstr[1] ""
|
165 |
|
166 |
-
#: bulk-delete.php:
|
167 |
msgid "Posts from the selected categories are scheduled for deletion."
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: bulk-delete.php:
|
171 |
msgid "Deleted %d post from the selected categories"
|
172 |
msgid_plural "Deleted %d posts from the selected categories"
|
173 |
msgstr[0] ""
|
174 |
msgstr[1] ""
|
175 |
|
176 |
-
#: bulk-delete.php:
|
177 |
msgid "Posts from the selected tags are scheduled for deletion."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: bulk-delete.php:
|
181 |
msgid "Deleted %d post from the selected tags"
|
182 |
msgid_plural "Deleted %d posts from the selected tags"
|
183 |
msgstr[0] ""
|
184 |
msgstr[1] ""
|
185 |
|
186 |
-
#: bulk-delete.php:
|
187 |
msgid "Posts from the selected custom taxonomies are scheduled for deletion."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: bulk-delete.php:
|
191 |
msgid "Deleted %d post from the selected custom taxonomies"
|
192 |
msgid_plural "Deleted %d posts from the selected custom taxonomies"
|
193 |
msgstr[0] ""
|
194 |
msgstr[1] ""
|
195 |
|
196 |
-
#: bulk-delete.php:
|
197 |
msgid "Posts from the selected custom post type are scheduled for deletion."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: bulk-delete.php:
|
201 |
msgid "Deleted %d post from the selected custom post type"
|
202 |
msgid_plural "Deleted %d posts from the selected custom post type"
|
203 |
msgstr[0] ""
|
204 |
msgstr[1] ""
|
205 |
|
206 |
-
#: bulk-delete.php:
|
207 |
msgid "Posts with the selected status are scheduled for deletion."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bulk-delete.php:
|
211 |
msgid "Deleted %d post with the selected post status"
|
212 |
msgid_plural "Deleted %d posts with the selected post status"
|
213 |
msgstr[0] ""
|
214 |
msgstr[1] ""
|
215 |
|
216 |
-
#: bulk-delete.php:
|
217 |
msgid "The selected pages are scheduled for deletion."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: bulk-delete.php:
|
221 |
msgid "Deleted %d page"
|
222 |
msgid_plural "Deleted %d pages"
|
223 |
msgstr[0] ""
|
224 |
msgstr[1] ""
|
225 |
|
226 |
-
#: bulk-delete.php:
|
227 |
msgid "Deleted %d post with the specified urls"
|
228 |
msgid_plural "Deleted %d posts with the specified urls"
|
229 |
msgstr[0] ""
|
230 |
msgstr[1] ""
|
231 |
|
232 |
-
#: bulk-delete.php:
|
233 |
msgid "Deleted %d post revision"
|
234 |
msgid_plural "Deleted %d post revisions"
|
235 |
msgstr[0] ""
|
236 |
msgstr[1] ""
|
237 |
|
238 |
-
#: bulk-delete.php:
|
239 |
-
msgid ""
|
240 |
-
"Posts matching the selected custom field setting are scheduled for deletion."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: bulk-delete.php:
|
244 |
msgid "Deleted %d post using the selected custom field condition"
|
245 |
msgid_plural "Deleted %d posts using the selected custom field condition"
|
246 |
msgstr[0] ""
|
@@ -248,21 +244,19 @@ msgstr[1] ""
|
|
248 |
|
249 |
#: include/class-bulk-delete-posts.php:16
|
250 |
#: include/class-bulk-delete-posts.php:126
|
251 |
-
#: include/class-bulk-delete-posts.php:
|
252 |
-
#: include/class-bulk-delete-posts.php:
|
253 |
-
#: include/class-bulk-delete-posts.php:
|
254 |
-
#: include/class-bulk-delete-posts.php:
|
255 |
-
#: include/class-bulk-delete-posts.php:
|
256 |
-
#: include/class-bulk-delete-posts.php:
|
257 |
-
#: include/class-bulk-delete-posts.php:
|
258 |
#: include/class-bulk-delete-users.php:16
|
259 |
-
msgid ""
|
260 |
-
"This section just got enabled. Kindly <a href = \"%1$s\">refresh</a> the "
|
261 |
-
"page to fully enable it."
|
262 |
msgstr ""
|
263 |
|
264 |
#: include/class-bulk-delete-posts.php:26
|
265 |
-
#: include/class-bulk-delete-posts.php:
|
266 |
msgid "Select the posts which you want to delete"
|
267 |
msgstr ""
|
268 |
|
@@ -281,9 +275,9 @@ msgstr ""
|
|
281 |
#: include/class-bulk-delete-posts.php:40
|
282 |
#: include/class-bulk-delete-posts.php:47
|
283 |
#: include/class-bulk-delete-posts.php:54
|
284 |
-
#: include/class-bulk-delete-posts.php:
|
285 |
-
#: include/class-bulk-delete-posts.php:
|
286 |
-
#: include/class-bulk-delete-posts.php:
|
287 |
msgid "Posts"
|
288 |
msgstr ""
|
289 |
|
@@ -296,329 +290,338 @@ msgid "All private posts"
|
|
296 |
msgstr ""
|
297 |
|
298 |
#: include/class-bulk-delete-posts.php:60
|
299 |
-
#: include/class-bulk-delete-posts.php:
|
300 |
-
#: include/class-bulk-delete-posts.php:
|
301 |
-
#: include/class-bulk-delete-posts.php:
|
302 |
-
#: include/class-bulk-delete-posts.php:
|
303 |
-
#: include/class-bulk-delete-posts.php:
|
304 |
-
#: include/class-bulk-delete-posts.php:
|
305 |
#: include/class-bulk-delete-users.php:42
|
306 |
#: tmp_addon/bulk-delete-by-custom-field.php:80
|
307 |
msgid "Choose your filtering options"
|
308 |
msgstr ""
|
309 |
|
310 |
#: include/class-bulk-delete-posts.php:67
|
311 |
-
#: include/class-bulk-delete-posts.php:
|
312 |
-
#: include/class-bulk-delete-posts.php:
|
313 |
-
#: include/class-bulk-delete-posts.php:
|
314 |
-
#: include/class-bulk-delete-posts.php:
|
315 |
#: tmp_addon/bulk-delete-by-custom-field.php:89
|
316 |
msgid "Only restrict to posts which are "
|
317 |
msgstr ""
|
318 |
|
319 |
#: include/class-bulk-delete-posts.php:69
|
320 |
-
#: include/class-bulk-delete-posts.php:
|
321 |
-
#: include/class-bulk-delete-posts.php:
|
322 |
-
#: include/class-bulk-delete-posts.php:
|
323 |
-
#: include/class-bulk-delete-posts.php:
|
324 |
-
#: include/class-bulk-delete-posts.php:
|
325 |
#: tmp_addon/bulk-delete-by-custom-field.php:91
|
326 |
msgid "older than"
|
327 |
msgstr ""
|
328 |
|
329 |
#: include/class-bulk-delete-posts.php:70
|
330 |
-
#: include/class-bulk-delete-posts.php:
|
331 |
-
#: include/class-bulk-delete-posts.php:
|
332 |
-
#: include/class-bulk-delete-posts.php:
|
333 |
-
#: include/class-bulk-delete-posts.php:
|
334 |
-
#: include/class-bulk-delete-posts.php:
|
335 |
#: tmp_addon/bulk-delete-by-custom-field.php:92
|
336 |
msgid "posted within last"
|
337 |
msgstr ""
|
338 |
|
339 |
#: include/class-bulk-delete-posts.php:72
|
340 |
-
#: include/class-bulk-delete-posts.php:
|
341 |
-
#: include/class-bulk-delete-posts.php:
|
342 |
-
#: include/class-bulk-delete-posts.php:
|
343 |
-
#: include/class-bulk-delete-posts.php:
|
344 |
-
#: include/class-bulk-delete-posts.php:
|
345 |
#: include/class-bulk-delete-users.php:59
|
346 |
#: tmp_addon/bulk-delete-by-custom-field.php:94
|
347 |
msgid "days"
|
348 |
msgstr ""
|
349 |
|
350 |
#: include/class-bulk-delete-posts.php:78
|
351 |
-
#: include/class-bulk-delete-posts.php:
|
352 |
-
#: include/class-bulk-delete-posts.php:
|
353 |
-
#: include/class-bulk-delete-posts.php:
|
354 |
-
#: include/class-bulk-delete-posts.php:
|
355 |
-
#: include/class-bulk-delete-posts.php:
|
356 |
-
#: include/class-bulk-delete-posts.php:
|
357 |
#: tmp_addon/bulk-delete-by-custom-field.php:100
|
358 |
msgid "Move to Trash"
|
359 |
msgstr ""
|
360 |
|
361 |
#: include/class-bulk-delete-posts.php:79
|
362 |
-
#: include/class-bulk-delete-posts.php:
|
363 |
-
#: include/class-bulk-delete-posts.php:
|
364 |
-
#: include/class-bulk-delete-posts.php:
|
365 |
-
#: include/class-bulk-delete-posts.php:
|
366 |
-
#: include/class-bulk-delete-posts.php:
|
367 |
-
#: include/class-bulk-delete-posts.php:
|
368 |
#: tmp_addon/bulk-delete-by-custom-field.php:101
|
369 |
msgid "Delete permanently"
|
370 |
msgstr ""
|
371 |
|
372 |
#: include/class-bulk-delete-posts.php:86
|
373 |
-
#: include/class-bulk-delete-posts.php:
|
374 |
-
#: include/class-bulk-delete-posts.php:
|
375 |
-
#: include/class-bulk-delete-posts.php:
|
376 |
-
#: include/class-bulk-delete-posts.php:
|
377 |
-
#: include/class-bulk-delete-posts.php:
|
378 |
#: tmp_addon/bulk-delete-by-custom-field.php:117
|
379 |
msgid "Only delete first "
|
380 |
msgstr ""
|
381 |
|
382 |
#: include/class-bulk-delete-posts.php:87
|
383 |
-
#: include/class-bulk-delete-posts.php:
|
384 |
-
#: include/class-bulk-delete-posts.php:
|
385 |
-
#: include/class-bulk-delete-posts.php:
|
386 |
-
#: include/class-bulk-delete-posts.php:
|
387 |
-
#: include/class-bulk-delete-posts.php:
|
388 |
#: tmp_addon/bulk-delete-by-custom-field.php:118
|
389 |
msgid "posts."
|
390 |
msgstr ""
|
391 |
|
392 |
#: include/class-bulk-delete-posts.php:88
|
393 |
-
#: include/class-bulk-delete-posts.php:
|
394 |
-
#: include/class-bulk-delete-posts.php:
|
395 |
-
#: include/class-bulk-delete-posts.php:
|
396 |
-
#: include/class-bulk-delete-posts.php:
|
397 |
-
#: include/class-bulk-delete-posts.php:
|
398 |
#: tmp_addon/bulk-delete-by-custom-field.php:119
|
399 |
-
msgid ""
|
400 |
-
"Use this option if there are more than 1000 posts and the script timesout."
|
401 |
msgstr ""
|
402 |
|
403 |
#: include/class-bulk-delete-posts.php:94
|
404 |
-
#: include/class-bulk-delete-posts.php:
|
405 |
-
#: include/class-bulk-delete-posts.php:
|
406 |
-
#: include/class-bulk-delete-posts.php:
|
407 |
-
#: include/class-bulk-delete-posts.php:
|
408 |
-
#: include/class-bulk-delete-posts.php:
|
409 |
#: include/class-bulk-delete-users.php:83
|
410 |
#: tmp_addon/bulk-delete-by-custom-field.php:125
|
411 |
msgid "Delete now"
|
412 |
msgstr ""
|
413 |
|
414 |
#: include/class-bulk-delete-posts.php:95
|
415 |
-
#: include/class-bulk-delete-posts.php:
|
416 |
-
#: include/class-bulk-delete-posts.php:
|
417 |
-
#: include/class-bulk-delete-posts.php:
|
418 |
-
#: include/class-bulk-delete-posts.php:
|
419 |
-
#: include/class-bulk-delete-posts.php:
|
420 |
-
#: include/class-bulk-delete-users.php:84
|
421 |
-
#: include/class-cron-list-table.php:117
|
422 |
#: tmp_addon/bulk-delete-by-custom-field.php:126
|
423 |
msgid "Schedule"
|
424 |
msgstr ""
|
425 |
|
426 |
#: include/class-bulk-delete-posts.php:96
|
427 |
-
#: include/class-bulk-delete-posts.php:
|
428 |
-
#: include/class-bulk-delete-posts.php:
|
429 |
-
#: include/class-bulk-delete-posts.php:
|
430 |
-
#: include/class-bulk-delete-posts.php:
|
431 |
-
#: include/class-bulk-delete-posts.php:
|
432 |
#: include/class-bulk-delete-users.php:85
|
433 |
#: tmp_addon/bulk-delete-by-custom-field.php:127
|
434 |
msgid "repeat "
|
435 |
msgstr ""
|
436 |
|
437 |
#: include/class-bulk-delete-posts.php:98
|
438 |
-
#: include/class-bulk-delete-posts.php:
|
439 |
-
#: include/class-bulk-delete-posts.php:
|
440 |
-
#: include/class-bulk-delete-posts.php:
|
441 |
-
#: include/class-bulk-delete-posts.php:
|
442 |
-
#: include/class-bulk-delete-posts.php:
|
443 |
#: include/class-bulk-delete-users.php:87
|
444 |
#: tmp_addon/bulk-delete-by-custom-field.php:129
|
445 |
msgid "Don't repeat"
|
446 |
msgstr ""
|
447 |
|
448 |
#: include/class-bulk-delete-posts.php:108
|
449 |
-
#: include/class-bulk-delete-posts.php:
|
450 |
-
#: include/class-bulk-delete-posts.php:
|
451 |
-
#: include/class-bulk-delete-posts.php:
|
452 |
-
#: include/class-bulk-delete-posts.php:
|
453 |
-
#: include/class-bulk-delete-posts.php:
|
454 |
#: include/class-bulk-delete-users.php:97
|
455 |
#: tmp_addon/bulk-delete-by-custom-field.php:139
|
456 |
msgid "Only available in Pro Addon"
|
457 |
msgstr ""
|
458 |
|
459 |
#: include/class-bulk-delete-posts.php:115
|
460 |
-
#: include/class-bulk-delete-posts.php:
|
461 |
-
#: include/class-bulk-delete-posts.php:
|
462 |
-
#: include/class-bulk-delete-posts.php:
|
463 |
-
#: include/class-bulk-delete-posts.php:
|
464 |
-
#: include/class-bulk-delete-posts.php:
|
465 |
-
#: include/class-bulk-delete-posts.php:
|
466 |
-
#: include/class-bulk-delete-posts.php:
|
467 |
#: include/class-bulk-delete-users.php:111
|
468 |
#: tmp_addon/bulk-delete-by-custom-field.php:153
|
469 |
msgid "Bulk Delete "
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: include/class-bulk-delete-posts.php:
|
|
|
|
|
|
|
|
|
473 |
msgid "Select the categories whose post you want to delete"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: include/class-bulk-delete-posts.php:
|
|
|
|
|
|
|
|
|
477 |
msgid "All Categories"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: include/class-bulk-delete-posts.php:
|
481 |
-
#: include/class-bulk-delete-posts.php:
|
482 |
-
#: include/class-bulk-delete-posts.php:
|
483 |
#: tmp_addon/bulk-delete-by-custom-field.php:107
|
484 |
msgid "Public posts"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: include/class-bulk-delete-posts.php:
|
488 |
-
#: include/class-bulk-delete-posts.php:
|
489 |
-
#: include/class-bulk-delete-posts.php:
|
490 |
#: tmp_addon/bulk-delete-by-custom-field.php:108
|
491 |
msgid "Private Posts"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: include/class-bulk-delete-posts.php:
|
495 |
#: include/class-bulk-delete-users.php:103
|
496 |
#: tmp_addon/bulk-delete-by-custom-field.php:145
|
497 |
msgid "Enter time in Y-m-d H:i:s format or enter now to use current time"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: include/class-bulk-delete-posts.php:
|
501 |
msgid "Select the tags whose post you want to delete"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: include/class-bulk-delete-posts.php:
|
505 |
msgid "All Tags"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: include/class-bulk-delete-posts.php:
|
509 |
msgid "You don't have any posts assigned to tags in this blog."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: include/class-bulk-delete-posts.php:
|
|
|
|
|
|
|
|
|
513 |
msgid "Select the taxonomies whose post you want to delete"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: include/class-bulk-delete-posts.php:
|
517 |
-
msgid ""
|
518 |
-
"The selected taxonomy has the following terms. Select the terms whose post "
|
519 |
-
"you want to delete"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: include/class-bulk-delete-posts.php:
|
|
|
|
|
|
|
|
|
523 |
msgid "You don't have any posts assigned to custom taxonomies in this blog."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: include/class-bulk-delete-posts.php:
|
527 |
msgid "Select the custom post type whose post you want to delete"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: include/class-bulk-delete-posts.php:
|
531 |
msgid "You don't have any posts assigned to custom post types in this blog."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: include/class-bulk-delete-posts.php:
|
535 |
msgid "Select the pages which you want to delete"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: include/class-bulk-delete-posts.php:
|
539 |
msgid "All Published Pages"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: include/class-bulk-delete-posts.php:
|
543 |
-
#: include/class-bulk-delete-posts.php:
|
544 |
-
#: include/class-bulk-delete-posts.php:
|
545 |
-
#: include/class-bulk-delete-posts.php:
|
546 |
-
#: include/class-bulk-delete-posts.php:
|
547 |
msgid "Pages"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: include/class-bulk-delete-posts.php:
|
551 |
msgid "All Draft Pages"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: include/class-bulk-delete-posts.php:
|
555 |
msgid "All Scheduled Pages"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: include/class-bulk-delete-posts.php:
|
559 |
msgid "All Pending Pages"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: include/class-bulk-delete-posts.php:
|
563 |
msgid "All Private Pages"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: include/class-bulk-delete-posts.php:
|
567 |
msgid "Only restrict to pages which are "
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: include/class-bulk-delete-posts.php:
|
571 |
msgid "Delete these specific pages"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: include/class-bulk-delete-posts.php:
|
575 |
msgid "Enter one post url (not post ids) per line"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: include/class-bulk-delete-posts.php:
|
579 |
msgid "All Revisions"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: include/class-bulk-delete-posts.php:
|
583 |
msgid "Revisions"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: include/class-bulk-delete-posts.php:
|
587 |
-
msgid ""
|
588 |
-
"You need \"Bulk Delete by Custom Field\" Addon, to delete post by custom "
|
589 |
-
"field."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: include/class-bulk-delete-posts.php:
|
593 |
-
msgid ""
|
594 |
-
"If you are seeing a blank page after clicking the Bulk Delete button, then "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: include/class-bulk-delete-posts.php:
|
598 |
msgid "check out this FAQ"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: include/class-bulk-delete-posts.php:
|
602 |
msgid "You also need need the following debug information."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: include/class-bulk-delete-posts.php:
|
606 |
msgid "PHP Version "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: include/class-bulk-delete-posts.php:
|
610 |
msgid "Plugin Version "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: include/class-bulk-delete-posts.php:
|
614 |
msgid "Available memory size "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: include/class-bulk-delete-posts.php:
|
618 |
msgid "Script time out "
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: include/class-bulk-delete-posts.php:
|
622 |
msgid "Script input time "
|
623 |
msgstr ""
|
624 |
|
@@ -648,9 +651,7 @@ msgid "M j, Y @ G:i"
|
|
648 |
msgstr ""
|
649 |
|
650 |
#: include/class-cron-list-table.php:31
|
651 |
-
msgid ""
|
652 |
-
"This is the list of jobs that are currently scheduled for auto deleting "
|
653 |
-
"posts in Bulk Delete Plugin."
|
654 |
msgstr ""
|
655 |
|
656 |
#: include/class-cron-list-table.php:39
|
@@ -658,15 +659,11 @@ msgid "Note: "
|
|
658 |
msgstr ""
|
659 |
|
660 |
#: include/class-cron-list-table.php:41
|
661 |
-
msgid ""
|
662 |
-
"Scheduling auto post or user deletion is available only when you buy pro "
|
663 |
-
"addons."
|
664 |
msgstr ""
|
665 |
|
666 |
#: include/class-cron-list-table.php:45
|
667 |
-
msgid ""
|
668 |
-
"The following are the list of pro addons that are currently available for "
|
669 |
-
"purchase."
|
670 |
msgstr ""
|
671 |
|
672 |
#: include/class-cron-list-table.php:51
|
@@ -712,8 +709,7 @@ msgid "Schedule auto delete of posts by Custom Taxonomy"
|
|
712 |
msgstr ""
|
713 |
|
714 |
#: include/class-cron-list-table.php:73
|
715 |
-
msgid ""
|
716 |
-
"Adds the ability to schedule auto delete of posts based on custom taxonomies"
|
717 |
msgstr ""
|
718 |
|
719 |
#: include/class-cron-list-table.php:79
|
@@ -721,8 +717,7 @@ msgid "Schedule auto delete of Posts by Custom Post Type"
|
|
721 |
msgstr ""
|
722 |
|
723 |
#: include/class-cron-list-table.php:80
|
724 |
-
msgid ""
|
725 |
-
"Adds the ability to schedule auto delete of posts based on custom post types"
|
726 |
msgstr ""
|
727 |
|
728 |
#: include/class-cron-list-table.php:86
|
@@ -738,9 +733,7 @@ msgid "Schedule auto delete of Posts by Post Status"
|
|
738 |
msgstr ""
|
739 |
|
740 |
#: include/class-cron-list-table.php:94
|
741 |
-
msgid ""
|
742 |
-
"Adds the ability to schedule auto delete of posts based on post status like "
|
743 |
-
"drafts, pending posts, scheduled posts etc."
|
744 |
msgstr ""
|
745 |
|
746 |
#: include/class-cron-list-table.php:100
|
@@ -794,7 +787,6 @@ msgstr ""
|
|
794 |
#: tmp_addon/bulk-delete-by-custom-field.php:74
|
795 |
msgid "If you want to check for null values, then leave the value column blank"
|
796 |
msgstr ""
|
797 |
-
|
798 |
#. Plugin Name of the plugin/theme
|
799 |
msgid "Bulk Delete"
|
800 |
msgstr ""
|
@@ -804,10 +796,7 @@ msgid "http://sudarmuthu.com/wordpress/bulk-delete"
|
|
804 |
msgstr ""
|
805 |
|
806 |
#. Description of the plugin/theme
|
807 |
-
msgid ""
|
808 |
-
"Bulk delete users and posts from selected categories, tags, post types, "
|
809 |
-
"custom taxonomies or by post status like drafts, scheduled posts, revisions "
|
810 |
-
"etc."
|
811 |
msgstr ""
|
812 |
|
813 |
#. Author of the plugin/theme
|
2 |
# This file is distributed under the same license as the Bulk Delete package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Bulk Delete 4.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
|
7 |
+
"POT-Creation-Date: 2013-12-08 12:31:36+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
29 |
msgstr ""
|
30 |
|
31 |
#: bulk-delete.php:147 bulk-delete.php:202
|
32 |
+
msgid "This plugin allows you to delete posts in bulk from selected categories, tags, custom taxonomies or by post status like drafts, pending posts, scheduled posts etc."
|
|
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
#: bulk-delete.php:154 bulk-delete.php:209
|
148 |
msgid "Users from the selected userrole are scheduled for deletion."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: bulk-delete.php:474 bulk-delete.php:514 bulk-delete.php:545
|
152 |
+
#: bulk-delete.php:578 bulk-delete.php:609 bulk-delete.php:643
|
153 |
+
#: bulk-delete.php:678 bulk-delete.php:746
|
154 |
msgid "See the full list of <a href = \"%s\">scheduled tasks</a>"
|
155 |
msgstr ""
|
156 |
|
160 |
msgstr[0] ""
|
161 |
msgstr[1] ""
|
162 |
|
163 |
+
#: bulk-delete.php:513
|
164 |
msgid "Posts from the selected categories are scheduled for deletion."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: bulk-delete.php:517
|
168 |
msgid "Deleted %d post from the selected categories"
|
169 |
msgid_plural "Deleted %d posts from the selected categories"
|
170 |
msgstr[0] ""
|
171 |
msgstr[1] ""
|
172 |
|
173 |
+
#: bulk-delete.php:544
|
174 |
msgid "Posts from the selected tags are scheduled for deletion."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bulk-delete.php:548
|
178 |
msgid "Deleted %d post from the selected tags"
|
179 |
msgid_plural "Deleted %d posts from the selected tags"
|
180 |
msgstr[0] ""
|
181 |
msgstr[1] ""
|
182 |
|
183 |
+
#: bulk-delete.php:577
|
184 |
msgid "Posts from the selected custom taxonomies are scheduled for deletion."
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: bulk-delete.php:581
|
188 |
msgid "Deleted %d post from the selected custom taxonomies"
|
189 |
msgid_plural "Deleted %d posts from the selected custom taxonomies"
|
190 |
msgstr[0] ""
|
191 |
msgstr[1] ""
|
192 |
|
193 |
+
#: bulk-delete.php:608
|
194 |
msgid "Posts from the selected custom post type are scheduled for deletion."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: bulk-delete.php:612
|
198 |
msgid "Deleted %d post from the selected custom post type"
|
199 |
msgid_plural "Deleted %d posts from the selected custom post type"
|
200 |
msgstr[0] ""
|
201 |
msgstr[1] ""
|
202 |
|
203 |
+
#: bulk-delete.php:642
|
204 |
msgid "Posts with the selected status are scheduled for deletion."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: bulk-delete.php:646
|
208 |
msgid "Deleted %d post with the selected post status"
|
209 |
msgid_plural "Deleted %d posts with the selected post status"
|
210 |
msgstr[0] ""
|
211 |
msgstr[1] ""
|
212 |
|
213 |
+
#: bulk-delete.php:677
|
214 |
msgid "The selected pages are scheduled for deletion."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: bulk-delete.php:681
|
218 |
msgid "Deleted %d page"
|
219 |
msgid_plural "Deleted %d pages"
|
220 |
msgstr[0] ""
|
221 |
msgstr[1] ""
|
222 |
|
223 |
+
#: bulk-delete.php:707
|
224 |
msgid "Deleted %d post with the specified urls"
|
225 |
msgid_plural "Deleted %d posts with the specified urls"
|
226 |
msgstr[0] ""
|
227 |
msgstr[1] ""
|
228 |
|
229 |
+
#: bulk-delete.php:716
|
230 |
msgid "Deleted %d post revision"
|
231 |
msgid_plural "Deleted %d post revisions"
|
232 |
msgstr[0] ""
|
233 |
msgstr[1] ""
|
234 |
|
235 |
+
#: bulk-delete.php:745
|
236 |
+
msgid "Posts matching the selected custom field setting are scheduled for deletion."
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bulk-delete.php:749
|
240 |
msgid "Deleted %d post using the selected custom field condition"
|
241 |
msgid_plural "Deleted %d posts using the selected custom field condition"
|
242 |
msgstr[0] ""
|
244 |
|
245 |
#: include/class-bulk-delete-posts.php:16
|
246 |
#: include/class-bulk-delete-posts.php:126
|
247 |
+
#: include/class-bulk-delete-posts.php:279
|
248 |
+
#: include/class-bulk-delete-posts.php:399
|
249 |
+
#: include/class-bulk-delete-posts.php:579
|
250 |
+
#: include/class-bulk-delete-posts.php:711
|
251 |
+
#: include/class-bulk-delete-posts.php:831
|
252 |
+
#: include/class-bulk-delete-posts.php:878
|
253 |
+
#: include/class-bulk-delete-posts.php:914
|
254 |
#: include/class-bulk-delete-users.php:16
|
255 |
+
msgid "This section just got enabled. Kindly <a href = \"%1$s\">refresh</a> the page to fully enable it."
|
|
|
|
|
256 |
msgstr ""
|
257 |
|
258 |
#: include/class-bulk-delete-posts.php:26
|
259 |
+
#: include/class-bulk-delete-posts.php:887
|
260 |
msgid "Select the posts which you want to delete"
|
261 |
msgstr ""
|
262 |
|
275 |
#: include/class-bulk-delete-posts.php:40
|
276 |
#: include/class-bulk-delete-posts.php:47
|
277 |
#: include/class-bulk-delete-posts.php:54
|
278 |
+
#: include/class-bulk-delete-posts.php:175
|
279 |
+
#: include/class-bulk-delete-posts.php:299
|
280 |
+
#: include/class-bulk-delete-posts.php:483
|
281 |
msgid "Posts"
|
282 |
msgstr ""
|
283 |
|
290 |
msgstr ""
|
291 |
|
292 |
#: include/class-bulk-delete-posts.php:60
|
293 |
+
#: include/class-bulk-delete-posts.php:194
|
294 |
+
#: include/class-bulk-delete-posts.php:316
|
295 |
+
#: include/class-bulk-delete-posts.php:496
|
296 |
+
#: include/class-bulk-delete-posts.php:635
|
297 |
+
#: include/class-bulk-delete-posts.php:764
|
298 |
+
#: include/class-bulk-delete-posts.php:851
|
299 |
#: include/class-bulk-delete-users.php:42
|
300 |
#: tmp_addon/bulk-delete-by-custom-field.php:80
|
301 |
msgid "Choose your filtering options"
|
302 |
msgstr ""
|
303 |
|
304 |
#: include/class-bulk-delete-posts.php:67
|
305 |
+
#: include/class-bulk-delete-posts.php:203
|
306 |
+
#: include/class-bulk-delete-posts.php:325
|
307 |
+
#: include/class-bulk-delete-posts.php:505
|
308 |
+
#: include/class-bulk-delete-posts.php:644
|
309 |
#: tmp_addon/bulk-delete-by-custom-field.php:89
|
310 |
msgid "Only restrict to posts which are "
|
311 |
msgstr ""
|
312 |
|
313 |
#: include/class-bulk-delete-posts.php:69
|
314 |
+
#: include/class-bulk-delete-posts.php:205
|
315 |
+
#: include/class-bulk-delete-posts.php:327
|
316 |
+
#: include/class-bulk-delete-posts.php:507
|
317 |
+
#: include/class-bulk-delete-posts.php:646
|
318 |
+
#: include/class-bulk-delete-posts.php:773
|
319 |
#: tmp_addon/bulk-delete-by-custom-field.php:91
|
320 |
msgid "older than"
|
321 |
msgstr ""
|
322 |
|
323 |
#: include/class-bulk-delete-posts.php:70
|
324 |
+
#: include/class-bulk-delete-posts.php:206
|
325 |
+
#: include/class-bulk-delete-posts.php:328
|
326 |
+
#: include/class-bulk-delete-posts.php:508
|
327 |
+
#: include/class-bulk-delete-posts.php:647
|
328 |
+
#: include/class-bulk-delete-posts.php:774
|
329 |
#: tmp_addon/bulk-delete-by-custom-field.php:92
|
330 |
msgid "posted within last"
|
331 |
msgstr ""
|
332 |
|
333 |
#: include/class-bulk-delete-posts.php:72
|
334 |
+
#: include/class-bulk-delete-posts.php:208
|
335 |
+
#: include/class-bulk-delete-posts.php:330
|
336 |
+
#: include/class-bulk-delete-posts.php:510
|
337 |
+
#: include/class-bulk-delete-posts.php:649
|
338 |
+
#: include/class-bulk-delete-posts.php:776
|
339 |
#: include/class-bulk-delete-users.php:59
|
340 |
#: tmp_addon/bulk-delete-by-custom-field.php:94
|
341 |
msgid "days"
|
342 |
msgstr ""
|
343 |
|
344 |
#: include/class-bulk-delete-posts.php:78
|
345 |
+
#: include/class-bulk-delete-posts.php:214
|
346 |
+
#: include/class-bulk-delete-posts.php:336
|
347 |
+
#: include/class-bulk-delete-posts.php:516
|
348 |
+
#: include/class-bulk-delete-posts.php:655
|
349 |
+
#: include/class-bulk-delete-posts.php:782
|
350 |
+
#: include/class-bulk-delete-posts.php:857
|
351 |
#: tmp_addon/bulk-delete-by-custom-field.php:100
|
352 |
msgid "Move to Trash"
|
353 |
msgstr ""
|
354 |
|
355 |
#: include/class-bulk-delete-posts.php:79
|
356 |
+
#: include/class-bulk-delete-posts.php:215
|
357 |
+
#: include/class-bulk-delete-posts.php:337
|
358 |
+
#: include/class-bulk-delete-posts.php:517
|
359 |
+
#: include/class-bulk-delete-posts.php:656
|
360 |
+
#: include/class-bulk-delete-posts.php:783
|
361 |
+
#: include/class-bulk-delete-posts.php:858
|
362 |
#: tmp_addon/bulk-delete-by-custom-field.php:101
|
363 |
msgid "Delete permanently"
|
364 |
msgstr ""
|
365 |
|
366 |
#: include/class-bulk-delete-posts.php:86
|
367 |
+
#: include/class-bulk-delete-posts.php:231
|
368 |
+
#: include/class-bulk-delete-posts.php:353
|
369 |
+
#: include/class-bulk-delete-posts.php:533
|
370 |
+
#: include/class-bulk-delete-posts.php:665
|
371 |
+
#: include/class-bulk-delete-posts.php:790
|
372 |
#: tmp_addon/bulk-delete-by-custom-field.php:117
|
373 |
msgid "Only delete first "
|
374 |
msgstr ""
|
375 |
|
376 |
#: include/class-bulk-delete-posts.php:87
|
377 |
+
#: include/class-bulk-delete-posts.php:232
|
378 |
+
#: include/class-bulk-delete-posts.php:354
|
379 |
+
#: include/class-bulk-delete-posts.php:534
|
380 |
+
#: include/class-bulk-delete-posts.php:666
|
381 |
+
#: include/class-bulk-delete-posts.php:791
|
382 |
#: tmp_addon/bulk-delete-by-custom-field.php:118
|
383 |
msgid "posts."
|
384 |
msgstr ""
|
385 |
|
386 |
#: include/class-bulk-delete-posts.php:88
|
387 |
+
#: include/class-bulk-delete-posts.php:233
|
388 |
+
#: include/class-bulk-delete-posts.php:355
|
389 |
+
#: include/class-bulk-delete-posts.php:535
|
390 |
+
#: include/class-bulk-delete-posts.php:667
|
391 |
+
#: include/class-bulk-delete-posts.php:792
|
392 |
#: tmp_addon/bulk-delete-by-custom-field.php:119
|
393 |
+
msgid "Use this option if there are more than 1000 posts and the script timesout."
|
|
|
394 |
msgstr ""
|
395 |
|
396 |
#: include/class-bulk-delete-posts.php:94
|
397 |
+
#: include/class-bulk-delete-posts.php:239
|
398 |
+
#: include/class-bulk-delete-posts.php:361
|
399 |
+
#: include/class-bulk-delete-posts.php:541
|
400 |
+
#: include/class-bulk-delete-posts.php:673
|
401 |
+
#: include/class-bulk-delete-posts.php:798
|
402 |
#: include/class-bulk-delete-users.php:83
|
403 |
#: tmp_addon/bulk-delete-by-custom-field.php:125
|
404 |
msgid "Delete now"
|
405 |
msgstr ""
|
406 |
|
407 |
#: include/class-bulk-delete-posts.php:95
|
408 |
+
#: include/class-bulk-delete-posts.php:240
|
409 |
+
#: include/class-bulk-delete-posts.php:362
|
410 |
+
#: include/class-bulk-delete-posts.php:542
|
411 |
+
#: include/class-bulk-delete-posts.php:674
|
412 |
+
#: include/class-bulk-delete-posts.php:799
|
413 |
+
#: include/class-bulk-delete-users.php:84 include/class-cron-list-table.php:117
|
|
|
414 |
#: tmp_addon/bulk-delete-by-custom-field.php:126
|
415 |
msgid "Schedule"
|
416 |
msgstr ""
|
417 |
|
418 |
#: include/class-bulk-delete-posts.php:96
|
419 |
+
#: include/class-bulk-delete-posts.php:241
|
420 |
+
#: include/class-bulk-delete-posts.php:363
|
421 |
+
#: include/class-bulk-delete-posts.php:543
|
422 |
+
#: include/class-bulk-delete-posts.php:675
|
423 |
+
#: include/class-bulk-delete-posts.php:800
|
424 |
#: include/class-bulk-delete-users.php:85
|
425 |
#: tmp_addon/bulk-delete-by-custom-field.php:127
|
426 |
msgid "repeat "
|
427 |
msgstr ""
|
428 |
|
429 |
#: include/class-bulk-delete-posts.php:98
|
430 |
+
#: include/class-bulk-delete-posts.php:243
|
431 |
+
#: include/class-bulk-delete-posts.php:365
|
432 |
+
#: include/class-bulk-delete-posts.php:545
|
433 |
+
#: include/class-bulk-delete-posts.php:677
|
434 |
+
#: include/class-bulk-delete-posts.php:802
|
435 |
#: include/class-bulk-delete-users.php:87
|
436 |
#: tmp_addon/bulk-delete-by-custom-field.php:129
|
437 |
msgid "Don't repeat"
|
438 |
msgstr ""
|
439 |
|
440 |
#: include/class-bulk-delete-posts.php:108
|
441 |
+
#: include/class-bulk-delete-posts.php:253
|
442 |
+
#: include/class-bulk-delete-posts.php:375
|
443 |
+
#: include/class-bulk-delete-posts.php:555
|
444 |
+
#: include/class-bulk-delete-posts.php:687
|
445 |
+
#: include/class-bulk-delete-posts.php:812
|
446 |
#: include/class-bulk-delete-users.php:97
|
447 |
#: tmp_addon/bulk-delete-by-custom-field.php:139
|
448 |
msgid "Only available in Pro Addon"
|
449 |
msgstr ""
|
450 |
|
451 |
#: include/class-bulk-delete-posts.php:115
|
452 |
+
#: include/class-bulk-delete-posts.php:267
|
453 |
+
#: include/class-bulk-delete-posts.php:382
|
454 |
+
#: include/class-bulk-delete-posts.php:562
|
455 |
+
#: include/class-bulk-delete-posts.php:694
|
456 |
+
#: include/class-bulk-delete-posts.php:819
|
457 |
+
#: include/class-bulk-delete-posts.php:866
|
458 |
+
#: include/class-bulk-delete-posts.php:902
|
459 |
#: include/class-bulk-delete-users.php:111
|
460 |
#: tmp_addon/bulk-delete-by-custom-field.php:153
|
461 |
msgid "Bulk Delete "
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: include/class-bulk-delete-posts.php:139
|
465 |
+
msgid "Select the post type whose category posts you want to delete"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: include/class-bulk-delete-posts.php:158
|
469 |
msgid "Select the categories whose post you want to delete"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: include/class-bulk-delete-posts.php:159
|
473 |
+
msgid "Note: The post count below for each category is the total number of posts in that category, irrespective of post type"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: include/class-bulk-delete-posts.php:186
|
477 |
msgid "All Categories"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: include/class-bulk-delete-posts.php:221
|
481 |
+
#: include/class-bulk-delete-posts.php:343
|
482 |
+
#: include/class-bulk-delete-posts.php:523
|
483 |
#: tmp_addon/bulk-delete-by-custom-field.php:107
|
484 |
msgid "Public posts"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: include/class-bulk-delete-posts.php:222
|
488 |
+
#: include/class-bulk-delete-posts.php:344
|
489 |
+
#: include/class-bulk-delete-posts.php:524
|
490 |
#: tmp_addon/bulk-delete-by-custom-field.php:108
|
491 |
msgid "Private Posts"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: include/class-bulk-delete-posts.php:259
|
495 |
#: include/class-bulk-delete-users.php:103
|
496 |
#: tmp_addon/bulk-delete-by-custom-field.php:145
|
497 |
msgid "Enter time in Y-m-d H:i:s format or enter now to use current time"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: include/class-bulk-delete-posts.php:286
|
501 |
msgid "Select the tags whose post you want to delete"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: include/class-bulk-delete-posts.php:310
|
505 |
msgid "All Tags"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: include/class-bulk-delete-posts.php:388
|
509 |
msgid "You don't have any posts assigned to tags in this blog."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: include/class-bulk-delete-posts.php:430
|
513 |
+
msgid "Select the post type whose taxonomy posts you want to delete"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: include/class-bulk-delete-posts.php:450
|
517 |
msgid "Select the taxonomies whose post you want to delete"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: include/class-bulk-delete-posts.php:469
|
521 |
+
msgid "The selected taxonomy has the following terms. Select the terms whose post you want to delete"
|
|
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: include/class-bulk-delete-posts.php:470
|
525 |
+
msgid "Note: The post count below for each term is the total number of posts in that term, irrespective of post type"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: include/class-bulk-delete-posts.php:568
|
529 |
msgid "You don't have any posts assigned to custom taxonomies in this blog."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: include/class-bulk-delete-posts.php:615
|
533 |
msgid "Select the custom post type whose post you want to delete"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: include/class-bulk-delete-posts.php:700
|
537 |
msgid "You don't have any posts assigned to custom post types in this blog."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: include/class-bulk-delete-posts.php:723
|
541 |
msgid "Select the pages which you want to delete"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: include/class-bulk-delete-posts.php:730
|
545 |
msgid "All Published Pages"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: include/class-bulk-delete-posts.php:730
|
549 |
+
#: include/class-bulk-delete-posts.php:737
|
550 |
+
#: include/class-bulk-delete-posts.php:744
|
551 |
+
#: include/class-bulk-delete-posts.php:751
|
552 |
+
#: include/class-bulk-delete-posts.php:758
|
553 |
msgid "Pages"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: include/class-bulk-delete-posts.php:737
|
557 |
msgid "All Draft Pages"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: include/class-bulk-delete-posts.php:744
|
561 |
msgid "All Scheduled Pages"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: include/class-bulk-delete-posts.php:751
|
565 |
msgid "All Pending Pages"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: include/class-bulk-delete-posts.php:758
|
569 |
msgid "All Private Pages"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: include/class-bulk-delete-posts.php:771
|
573 |
msgid "Only restrict to pages which are "
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: include/class-bulk-delete-posts.php:837
|
577 |
msgid "Delete these specific pages"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: include/class-bulk-delete-posts.php:843
|
581 |
msgid "Enter one post url (not post ids) per line"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: include/class-bulk-delete-posts.php:894
|
585 |
msgid "All Revisions"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: include/class-bulk-delete-posts.php:894
|
589 |
msgid "Revisions"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: include/class-bulk-delete-posts.php:923
|
593 |
+
msgid "You need \"Bulk Delete by Custom Field\" Addon, to delete post by custom field."
|
|
|
|
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: include/class-bulk-delete-posts.php:941
|
597 |
+
msgid "If you are seeing a blank page after clicking the Bulk Delete button, then "
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: include/class-bulk-delete-posts.php:941
|
601 |
msgid "check out this FAQ"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: include/class-bulk-delete-posts.php:942
|
605 |
msgid "You also need need the following debug information."
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: include/class-bulk-delete-posts.php:946
|
609 |
msgid "PHP Version "
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: include/class-bulk-delete-posts.php:950
|
613 |
msgid "Plugin Version "
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: include/class-bulk-delete-posts.php:954
|
617 |
msgid "Available memory size "
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: include/class-bulk-delete-posts.php:958
|
621 |
msgid "Script time out "
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: include/class-bulk-delete-posts.php:962
|
625 |
msgid "Script input time "
|
626 |
msgstr ""
|
627 |
|
651 |
msgstr ""
|
652 |
|
653 |
#: include/class-cron-list-table.php:31
|
654 |
+
msgid "This is the list of jobs that are currently scheduled for auto deleting posts in Bulk Delete Plugin."
|
|
|
|
|
655 |
msgstr ""
|
656 |
|
657 |
#: include/class-cron-list-table.php:39
|
659 |
msgstr ""
|
660 |
|
661 |
#: include/class-cron-list-table.php:41
|
662 |
+
msgid "Scheduling auto post or user deletion is available only when you buy pro addons."
|
|
|
|
|
663 |
msgstr ""
|
664 |
|
665 |
#: include/class-cron-list-table.php:45
|
666 |
+
msgid "The following are the list of pro addons that are currently available for purchase."
|
|
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
#: include/class-cron-list-table.php:51
|
709 |
msgstr ""
|
710 |
|
711 |
#: include/class-cron-list-table.php:73
|
712 |
+
msgid "Adds the ability to schedule auto delete of posts based on custom taxonomies"
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
#: include/class-cron-list-table.php:79
|
717 |
msgstr ""
|
718 |
|
719 |
#: include/class-cron-list-table.php:80
|
720 |
+
msgid "Adds the ability to schedule auto delete of posts based on custom post types"
|
|
|
721 |
msgstr ""
|
722 |
|
723 |
#: include/class-cron-list-table.php:86
|
733 |
msgstr ""
|
734 |
|
735 |
#: include/class-cron-list-table.php:94
|
736 |
+
msgid "Adds the ability to schedule auto delete of posts based on post status like drafts, pending posts, scheduled posts etc."
|
|
|
|
|
737 |
msgstr ""
|
738 |
|
739 |
#: include/class-cron-list-table.php:100
|
787 |
#: tmp_addon/bulk-delete-by-custom-field.php:74
|
788 |
msgid "If you want to check for null values, then leave the value column blank"
|
789 |
msgstr ""
|
|
|
790 |
#. Plugin Name of the plugin/theme
|
791 |
msgid "Bulk Delete"
|
792 |
msgstr ""
|
796 |
msgstr ""
|
797 |
|
798 |
#. Description of the plugin/theme
|
799 |
+
msgid "Bulk delete users and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc."
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
#. Author of the plugin/theme
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.
|
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 |
|
@@ -77,7 +77,7 @@ If you looking for just moving posts, instead of deleting, then use [Bulk Move P
|
|
77 |
|
78 |
The following are the list of pro addons that are currently available for purchase to add more features to the Plugin.
|
79 |
|
80 |
-
- **Delete posts by custom field** - Adds the ability to delete posts based on custom field. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons
|
81 |
- **Schedule auto delete of Posts by Categories** - Adds the ability to schedule auto delete of posts based on categories. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-categories). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-category-addon)
|
82 |
- **Schedule auto delete of Posts by Tags** - Adds the ability to schedule auto delete of posts based on tags. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-tags). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-tags-addon)
|
83 |
- **Schedule auto delete of Posts by Custom Taxonomies** - Adds the ability to schedule auto delete of posts based on custom taxonomies. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-taxonomy). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon)
|
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.3
|
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 |
|
77 |
|
78 |
The following are the list of pro addons that are currently available for purchase to add more features to the Plugin.
|
79 |
|
80 |
+
- **Delete posts by custom field** - Adds the ability to delete posts based on custom field. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-by-custom-field). [Buy now](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-by-custom-field)
|
81 |
- **Schedule auto delete of Posts by Categories** - Adds the ability to schedule auto delete of posts based on categories. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-categories). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-category-addon)
|
82 |
- **Schedule auto delete of Posts by Tags** - Adds the ability to schedule auto delete of posts based on tags. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-tags). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-tags-addon)
|
83 |
- **Schedule auto delete of Posts by Custom Taxonomies** - Adds the ability to schedule auto delete of posts based on custom taxonomies. [More details](http://sudarmuthu.com/wordpress/bulk-delete/pro-addons#bulk-delete-schedule-taxonomy). [Buy now](http://sudarmuthu.com/out/buy-bulk-delete-taxonomy-addon)
|