Changeset 2445408
- Timestamp:
- 12/24/2020 08:24:31 AM (5 years ago)
- Location:
- admin-post-tag-filter/tags/2.0
- Files:
-
- 2 edited
- 1 copied
-
. (copied) (copied from admin-post-tag-filter/trunk)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-post-tag-filter/tags/2.0/index.php
r1445416 r2445408 2 2 /* 3 3 Plugin Name: Admin post tag filter 4 Description: A dmin posts and pages filter by tags5 Version: 1.04 Description: Allowed admin to filter the posts or pages using tags. 5 Version: 2.0 6 6 Author: kiranpatil353, clarionwpdeveloper 7 Author URI: https://www.clariontech.com/ 8 Plugin URI: https://wordpress.org/plugins/author-filters 9 Text Domain: admin-post-tag-filter 7 10 */ 8 11 … … 34 37 35 38 add_action('restrict_manage_posts', 'aptf_manage_posts_by_tag'); 39 40 function admin_post_tag_filter_load_plugin_textdomain() { 41 load_plugin_textdomain( 'admin-post-tag-filter', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' ); 42 } 43 add_action( 'plugins_loaded', 'admin_post_tag_filter_load_plugin_textdomain' ); -
admin-post-tag-filter/tags/2.0/readme.txt
r1446357 r2445408 1 1 === Admin post tag filter === 2 2 Contributors: kiranpatil353, clarionwpdeveloper 3 Tags: filter, posts, admin, edit, management 4 Requires at least: 3.0.15 Tested up to: 4.5.26 Stable tag: 1.03 Tags: filter, posts, admin, edit, management, tags 4 Requires at least: 4.9 5 Tested up to: 5.6 6 Stable tag: 5.6 7 7 License: GPLv2 or later 8 8 Admin posts and pages filter by tags … … 10 10 == Description == 11 11 12 A dmin posts and pages filter by tags12 Allowed admin to filter the posts or pages using tags. 13 13 14 14 == Installation == … … 39 39 == Changelog == 40 40 41 = 2.0 = 42 Loads a plugin’s translated validation meesage. 43 Version Upgrade and tested compatibility with latest stable versions. 44 41 45 = 1.0 = 42 46 * Initial release.
Note: See TracChangeset
for help on using the changeset viewer.