Changeset 2536039
- Timestamp:
- 05/23/2021 12:06:30 PM (5 years ago)
- Location:
- already-existing-tags/trunk
- Files:
-
- 3 edited
-
already-existing-tags-core.php (modified) (1 diff)
-
already-existing-tags.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
already-existing-tags/trunk/already-existing-tags-core.php
r2514207 r2536039 40 40 ); 41 41 42 if ( $existing_tags && array_intersect( $post_categories, aet_included_categories() ) ) {42 if ( $existing_tags && ( ! get_option( 'aet_filter_by_category' ) || array_intersect( $post_categories, aet_included_categories() ) ) ) { 43 43 if ( get_option( 'aet_block_manually_added_tags' ) ) { 44 44 wp_delete_object_term_relationships( $the_post_id, 'post_tag' ); -
already-existing-tags/trunk/already-existing-tags.php
r2514207 r2536039 4 4 Plugin URI: https://digitalemphasis.com/wordpress-plugins/already-existing-tags/ 5 5 Description: Looks for already existing tags within your posts. 6 Version: 2. 36 Version: 2.4 7 7 Author: digitalemphasis 8 8 Author URI: https://digitalemphasis.com/ … … 11 11 12 12 defined( 'ABSPATH' ) || die( 'Cannot access pages directly.' ); 13 defined( 'AET_PLUGIN_VER' ) || define( 'AET_PLUGIN_VER', '2. 3' );13 defined( 'AET_PLUGIN_VER' ) || define( 'AET_PLUGIN_VER', '2.4' ); 14 14 15 15 function aet_register_the_settings() { … … 25 25 26 26 function aet_enqueue_assets() { 27 wp_enqueue_style( 'aet-admin- style', plugins_url( 'admin/already-existing-tags-admin.css', __FILE__ ), array(), AET_PLUGIN_VER );28 wp_enqueue_script( 'aet-admin- script', plugins_url( 'admin/already-existing-tags-admin.js', __FILE__ ), array( 'jquery' ), AET_PLUGIN_VER, true );27 wp_enqueue_style( 'aet-admin-css', plugins_url( 'admin/already-existing-tags-admin.css', __FILE__ ), array(), AET_PLUGIN_VER ); 28 wp_enqueue_script( 'aet-admin-js', plugins_url( 'admin/already-existing-tags-admin.js', __FILE__ ), array( 'jquery' ), AET_PLUGIN_VER, true ); 29 29 } 30 30 add_action( 'admin_enqueue_scripts', 'aet_enqueue_assets' ); -
already-existing-tags/trunk/readme.txt
r2514207 r2536039 5 5 Requires at least: 4.0 6 6 Tested up to: 5.7 7 Stable tag: 2. 37 Stable tag: 2.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 51 51 52 52 == Changelog == 53 54 = 2.4 = 55 * Fixed: the plugin should work with all posts when 'Filter by category' is disabled regardless of the previous selected categories when 'Filter by category' was enabled. 53 56 54 57 = 2.3 =
Note: See TracChangeset
for help on using the changeset viewer.