Changeset 2445358
- Timestamp:
- 12/24/2020 05:16:02 AM (5 years ago)
- Location:
- auto-assign-post-category
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from auto-assign-post-category/trunk)
-
tags/1.0.1/index.php (modified) (2 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
auto-assign-post-category/tags/1.0.1/index.php
r1429899 r2445358 2 2 /* Plugin Name: Auto Assign Post Category 3 3 * 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 5 5 * Author: kiranpatil353, clarionwpdeveloper 6 * Text Domain: auto-assign-post-category 6 7 * License: GPLv2 7 8 */ … … 254 255 register_uninstall_hook(__FILE__, 'auto_apc_hook_uninstall'); 255 256 257 function auto_assign_post_caategory_load_plugin_textdomain() { 258 load_plugin_textdomain( 'auto-assign-post-category', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 259 } 260 add_action( 'plugins_loaded', 'auto_assign_post_caategory_load_plugin_textdomain' ); 261 256 262 ?> -
auto-assign-post-category/tags/1.0.1/readme.txt
r1445432 r2445358 3 3 Tags: Auto assign post category, assign category , tags based category , post category, auto category , assign category to post , wordpress category post auto 4 4 Author: kiranpatil353 5 Requires at least: 3.0.16 Tested up to: 4.57 Stable tag: 1.0 5 Requires at least: 4.9 6 Tested up to: 5.6 7 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories. … … 25 25 26 26 == Changelog == 27 = 1.0.1 = 28 Loads a plugin’s translated validation meesage. 29 Version Upgrade and tested compatibility with latest stable versions. 27 30 28 31 = 1.0.0 = -
auto-assign-post-category/trunk/index.php
r1429899 r2445358 2 2 /* Plugin Name: Auto Assign Post Category 3 3 * 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 5 5 * Author: kiranpatil353, clarionwpdeveloper 6 * Text Domain: auto-assign-post-category 6 7 * License: GPLv2 7 8 */ … … 254 255 register_uninstall_hook(__FILE__, 'auto_apc_hook_uninstall'); 255 256 257 function auto_assign_post_caategory_load_plugin_textdomain() { 258 load_plugin_textdomain( 'auto-assign-post-category', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 259 } 260 add_action( 'plugins_loaded', 'auto_assign_post_caategory_load_plugin_textdomain' ); 261 256 262 ?> -
auto-assign-post-category/trunk/readme.txt
r1445432 r2445358 3 3 Tags: Auto assign post category, assign category , tags based category , post category, auto category , assign category to post , wordpress category post auto 4 4 Author: kiranpatil353 5 Requires at least: 3.0.16 Tested up to: 4.57 Stable tag: 1.0 5 Requires at least: 4.9 6 Tested up to: 5.6 7 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 Auto assign post category based on tags mapped by user in plugin setting. Single tag can be mapped to multiple categories. … … 25 25 26 26 == Changelog == 27 = 1.0.1 = 28 Loads a plugin’s translated validation meesage. 29 Version Upgrade and tested compatibility with latest stable versions. 27 30 28 31 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.