Plugin Directory

Changeset 2536039


Ignore:
Timestamp:
05/23/2021 12:06:30 PM (5 years ago)
Author:
digitalemphasis
Message:

adding 2.4 release

Location:
already-existing-tags/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • already-existing-tags/trunk/already-existing-tags-core.php

    r2514207 r2536039  
    4040        );
    4141
    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() ) ) ) {
    4343            if ( get_option( 'aet_block_manually_added_tags' ) ) {
    4444                wp_delete_object_term_relationships( $the_post_id, 'post_tag' );
  • already-existing-tags/trunk/already-existing-tags.php

    r2514207 r2536039  
    44Plugin URI: https://digitalemphasis.com/wordpress-plugins/already-existing-tags/
    55Description: Looks for already existing tags within your posts.
    6 Version: 2.3
     6Version: 2.4
    77Author: digitalemphasis
    88Author URI: https://digitalemphasis.com/
     
    1111
    1212defined( 'ABSPATH' ) || die( 'Cannot access pages directly.' );
    13 defined( 'AET_PLUGIN_VER' ) || define( 'AET_PLUGIN_VER', '2.3' );
     13defined( 'AET_PLUGIN_VER' ) || define( 'AET_PLUGIN_VER', '2.4' );
    1414
    1515function aet_register_the_settings() {
     
    2525
    2626function 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 );
    2929}
    3030add_action( 'admin_enqueue_scripts', 'aet_enqueue_assets' );
  • already-existing-tags/trunk/readme.txt

    r2514207 r2536039  
    55Requires at least: 4.0
    66Tested up to: 5.7
    7 Stable tag: 2.3
     7Stable tag: 2.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5151
    5252== 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.
    5356
    5457= 2.3 =
Note: See TracChangeset for help on using the changeset viewer.