Changeset 2621605
- Timestamp:
- 10/28/2021 07:14:52 PM (4 years ago)
- Location:
- bulk-remove-posts-from-category
- Files:
-
- 8 added
- 2 edited
-
tags/3.2.1 (added)
-
tags/3.2.1/css (added)
-
tags/3.2.1/css/wpbulkremove_style.css (added)
-
tags/3.2.1/js (added)
-
tags/3.2.1/js/wpbulkremove.js (added)
-
tags/3.2.1/license.txt (added)
-
tags/3.2.1/readme.txt (added)
-
tags/3.2.1/wpbulkremove.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpbulkremove.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bulk-remove-posts-from-category/trunk/readme.txt
r2499266 r2621605 4 4 Tags: post categories, bulk edit, bulk remove, product categories 5 5 Requires at least: 4.6 6 Tested up to: 5. 77 Stable tag: 3.2 8 WC tested up to: 5. 1.06 Tested up to: 5.8.1 7 Stable tag: 3.2.1 8 WC tested up to: 5.8.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 39 39 == Changelog == 40 40 41 = 3.2.1 = 42 * Added additional Access-Control-Allow-Origin header in order to prevent AJAX errors 43 41 44 = 3.2 = 42 45 * Support for multiple post taxonomies -
bulk-remove-posts-from-category/trunk/wpbulkremove.php
r2499266 r2621605 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.2 9 * Version: 3.2.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. 714 * Tested up to: 5.8.1 15 15 * Text Domain: bulk-remove-posts-from-category 16 16 * Domain Path: languages/ 17 17 * 18 * WC tested up to: 5. 1.018 * WC tested up to: 5.8.0 19 19 * 20 20 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU … … 60 60 */ 61 61 62 add_filter('allowed_http_origins', function($origins) { 63 $origins[] = home_url(''); 64 return $origins; 65 }); 66 62 67 add_action( 'wp_ajax_masterns_bulk_remove_cat', 'masterns_bulk_remove_cat_edit_hook' ); 63 68 function masterns_bulk_remove_cat_edit_hook() {
Note: See TracChangeset
for help on using the changeset viewer.