Changeset 2696282
- Timestamp:
- 03/18/2022 10:53:01 PM (4 years ago)
- Location:
- filter-page-by-template/trunk
- Files:
-
- 2 edited
-
filter-page-by-template.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
filter-page-by-template/trunk/filter-page-by-template.php
r2696280 r2696282 6 6 Author: oneTarek 7 7 Author URI: http://onetarek.com 8 Version: 2. 18 Version: 2.2 9 9 */ 10 10 … … 22 22 add_action('manage_pages_custom_column', array( $this, 'post_list_columns_content' ), 10, 2); 23 23 24 add_action( ' plugins_loaded', array( $this , 'load_textdomain' ) );24 add_action( 'init', array( $this , 'load_textdomain' ) ); 25 25 26 26 } … … 141 141 */ 142 142 public function load_textdomain(){ 143 load_plugin_textdomain( 'filter-page-by-template', false, "./languages/");143 load_plugin_textdomain( 'filter-page-by-template', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 144 144 } 145 145 -
filter-page-by-template/trunk/readme.txt
r2696280 r2696282 5 5 Requires at least: 3.8.0 6 6 Tested up to: 5.9.2 7 Stable tag: 2. 17 Stable tag: 2.2 8 8 License: GPLv2+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 45 45 == Changelog == 46 = 2.2 (March 19, 2022) = 47 * Fix plugin translation. 48 46 49 = 2.1 (March 19, 2022) = 47 50 * Fix plugin translation. … … 74 77 75 78 == Upgrade Notice == 79 = 2.2 (March 19, 2022) = 80 * Fix plugin translation. 81 76 82 = 2.1 (March 19, 2022) = 77 83 * Fix plugin translation.
Note: See TracChangeset
for help on using the changeset viewer.