Plugin Directory

Changeset 2445358


Ignore:
Timestamp:
12/24/2020 05:16:02 AM (5 years ago)
Author:
clarionwpdeveloper
Message:

Tagging version 1.0.1

Location:
auto-assign-post-category
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • auto-assign-post-category/tags/1.0.1/index.php

    r1429899 r2445358  
    22/* Plugin Name: Auto Assign Post Category
    33 * Description: Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories.
    4  * Version: 1.0
     4 * Version: 1.0.1
    55 * Author: kiranpatil353, clarionwpdeveloper
     6 * Text Domain: auto-assign-post-category
    67 * License: GPLv2
    78 */
     
    254255register_uninstall_hook(__FILE__, 'auto_apc_hook_uninstall');
    255256
     257function auto_assign_post_caategory_load_plugin_textdomain() {
     258    load_plugin_textdomain( 'auto-assign-post-category', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
     259}
     260add_action( 'plugins_loaded', 'auto_assign_post_caategory_load_plugin_textdomain' );
     261
    256262?>
  • auto-assign-post-category/tags/1.0.1/readme.txt

    r1445432 r2445358  
    33Tags: Auto assign post category, assign category , tags based category , post category, auto category , assign category to post , wordpress category post auto
    44Author: kiranpatil353
    5 Requires at least: 3.0.1
    6 Tested up to: 4.5
    7 Stable tag: 1.0
     5Requires at least: 4.9
     6Tested up to: 5.6
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories.
     
    2525
    2626== Changelog ==
     27= 1.0.1 =
     28  Loads a plugin’s translated validation meesage. 
     29  Version Upgrade and tested compatibility with latest stable versions.
    2730
    2831= 1.0.0 =
  • auto-assign-post-category/trunk/index.php

    r1429899 r2445358  
    22/* Plugin Name: Auto Assign Post Category
    33 * Description: Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories.
    4  * Version: 1.0
     4 * Version: 1.0.1
    55 * Author: kiranpatil353, clarionwpdeveloper
     6 * Text Domain: auto-assign-post-category
    67 * License: GPLv2
    78 */
     
    254255register_uninstall_hook(__FILE__, 'auto_apc_hook_uninstall');
    255256
     257function auto_assign_post_caategory_load_plugin_textdomain() {
     258    load_plugin_textdomain( 'auto-assign-post-category', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
     259}
     260add_action( 'plugins_loaded', 'auto_assign_post_caategory_load_plugin_textdomain' );
     261
    256262?>
  • auto-assign-post-category/trunk/readme.txt

    r1445432 r2445358  
    33Tags: Auto assign post category, assign category , tags based category , post category, auto category , assign category to post , wordpress category post auto
    44Author: kiranpatil353
    5 Requires at least: 3.0.1
    6 Tested up to: 4.5
    7 Stable tag: 1.0
     5Requires at least: 4.9
     6Tested up to: 5.6
     7Stable tag: 1.0.1
    88License: GPLv2 or later
    99Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories.
     
    2525
    2626== Changelog ==
     27= 1.0.1 =
     28  Loads a plugin’s translated validation meesage. 
     29  Version Upgrade and tested compatibility with latest stable versions.
    2730
    2831= 1.0.0 =
Note: See TracChangeset for help on using the changeset viewer.