Plugin Directory

Changeset 1844009


Ignore:
Timestamp:
03/21/2018 09:20:39 AM (8 years ago)
Author:
digitalemphasis
Message:

adding 2.0 release

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

Legend:

Unmodified
Added
Removed
  • already-existing-tags/trunk/admin/already-existing-tags-admin.css

    r1612403 r1844009  
    33    font-weight: bold;
    44}
    5 
    65.wrap h3 {
    76    color: #FF8000;
    87}
    9 
    108.form-table td {
    119    text-align: left;
    1210}
    13 
    1411#categories-container .categories-block {
    1512    display: inline-block;
  • already-existing-tags/trunk/admin/already-existing-tags-admin.php

    r1612403 r1844009  
    6262
    6363<?php
    64 $cat_args = array(
     64$cat_args   = array(
    6565    'hide_empty' => 0,
    6666);
  • already-existing-tags/trunk/already-existing-tags-core.php

    r1612403 r1844009  
    22defined( 'ABSPATH' ) || die( 'Cannot access pages directly.' );
    33
    4 get_option( 'aet_included_categories' ) ? $aet_included_categories = array_map( function( $cat_id ) {
    5     return + $cat_id;
    6 }, get_option( 'aet_included_categories' ) ) : $aet_included_categories = array();
     4get_option( 'aet_included_categories' ) ? $aet_included_categories = array_map(
     5    function( $cat_id ) {
     6            return + $cat_id;
     7    }, get_option( 'aet_included_categories' )
     8) : $aet_included_categories = array();
    79
    810function automatic_tagging( $the_post_id ) {
     
    2224        $the_post_content = get_post( $the_post_id )->post_content;
    2325        $the_post_content = wp_strip_all_tags( $the_post_content );
    24         $existing_tags = get_terms( 'post_tag', array(
    25             'hide_empty' => false,
    26         ) );
     26        $existing_tags    = get_terms(
     27            'post_tag', array(
     28                'hide_empty' => false,
     29            )
     30        );
    2731
    2832        if ( $existing_tags && array_intersect( $post_categories, $aet_included_categories ) ) {
  • already-existing-tags/trunk/already-existing-tags.php

    r1612403 r1844009  
    44Plugin URI: http://www.digitalemphasis.com/wordpress-plugins/already-existing-tags/
    55Description: Looks for already existing tags within your posts.
    6 Version: 1.9
     6Version: 2.0
    77Author: digitalemphasis
    88Author URI: http://www.digitalemphasis.com/
     
    2828
    2929function aet_settings_page() {
    30     include( 'admin/already-existing-tags-admin.php' );
     30    include 'admin/already-existing-tags-admin.php';
    3131}
    3232
     
    8787register_uninstall_hook( __FILE__, 'aet_uninstall' );
    8888
    89 include( 'already-existing-tags-core.php' );
     89include 'already-existing-tags-core.php';
  • already-existing-tags/trunk/readme.txt

    r1612403 r1844009  
    44Donate link: http://www.digitalemphasis.com/donate/
    55Tags:  admin, administration, automatic, automatic tagging, automatic tags, auto tagger, auto tagging, content, post, posts, tagger, tagging, tags, title
    6 Requires at least: 3.5
    7 Tested up to: 4.7
    8 Stable tag: 1.9
     6Requires at least: 4.0
     7Tested up to: 4.9
     8Stable tag: 2.0
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1616
    1717This plugin finds your 'already existing tags' into your post each time you create or edit/save one. The found tags will be automatically assigned.
    18 
    1918
    2019= Features =
     
    4342Yes. The post content will always be examined.
    4443
     44= My language uses a non latin script. Can I use this plugin? =
     45Yes, as long as you use valid UTF-8 characters, the plugin will work.
     46
    4547
    4648== Screenshots ==
     
    5052
    5153== Changelog ==
     54
     55= 2.0 =
     56* Ensure compatibility with WordPress 4.8 and 4.9
     57* Improved adherence to WordPress Coding Standards.
    5258
    5359= 1.9 =
Note: See TracChangeset for help on using the changeset viewer.