Changeset 2366790
- Timestamp:
- 08/21/2020 08:44:14 PM (6 years ago)
- Location:
- bulk-remove-posts-from-category
- Files:
-
- 8 added
- 3 edited
-
tags/3.1 (added)
-
tags/3.1/css (added)
-
tags/3.1/css/wpbulkremove_style.css (added)
-
tags/3.1/js (added)
-
tags/3.1/js/wpbulkremove.js (added)
-
tags/3.1/license.txt (added)
-
tags/3.1/readme.txt (added)
-
tags/3.1/wpbulkremove.php (added)
-
trunk/js/wpbulkremove.js (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpbulkremove.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bulk-remove-posts-from-category/trunk/js/wpbulkremove.js
r2244629 r2366790 34 34 jQuery(function($){ 35 35 $( 'body' ).on( 'click', 'input[name="bulk_edit"]', function() { 36 36 37 37 $( this ).after('<span class="spinner is-active"></span>'); 38 38 … … 40 40 var $bulktax = wpbulkremove.wpbulkremove_tax; 41 41 var bulk_edit_row = $( 'tr#bulk-edit' ); 42 remcat = bulk_edit_row.find( 'input[name="remove_cat"]' ). attr('checked') ? 1 : 0;43 42 remcat = bulk_edit_row.find( 'input[name="remove_cat"]' ).is(':checked') ? 1 : 0; 43 44 44 if(remcat == 1){ 45 45 post_ids = new Array(); … … 58 58 url: ajaxurl, 59 59 type: 'POST', 60 async: false,60 async: true, 61 61 cache: false, 62 62 data: { … … 67 67 type: $bulktype, 68 68 taxonomy: $bulktax 69 } 69 } 70 70 }); 71 71 } -
bulk-remove-posts-from-category/trunk/readme.txt
r2244629 r2366790 4 4 Tags: post categories, bulk edit, bulk remove, product categories 5 5 Requires at least: 4.6 6 Tested up to: 5.3.2 7 Stable tag: 3.0 6 Tested up to: 5.5 7 Stable tag: 3.1 8 WC tested up to: 4.4.1 8 9 License: GPLv2 or later 9 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 39 == Changelog == 39 40 41 = 3.1 = 42 * WordPress 5.5 compatibility 43 40 44 = 3.0 = 41 45 * Custom Post Type support -
bulk-remove-posts-from-category/trunk/wpbulkremove.php
r2244629 r2366790 7 7 * Plugin URI: https://masterns-studio.com/code-factory/wordpress-plugin/bulk-remove-from-category/ 8 8 * Description: Bulk remove posts from category 9 * Version: 3. 09 * Version: 3.1 10 10 * Author: MasterNs 11 11 * Author URI: https://masterns-studio.com/ 12 12 * License: GPLv2 or later 13 13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 14 * Tested up to: 5. 3.214 * Tested up to: 5.5 15 15 * Text Domain: bulk-remove-posts-from-category 16 16 * Domain Path: languages/ 17 * 17 * 18 * WC tested up to: 4.4.1 19 * 18 20 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU 19 21 * General Public License version 2, as published by the Free Software Foundation. You may NOT assume
Note: See TracChangeset
for help on using the changeset viewer.