Changeset 3234805
- Timestamp:
- 02/04/2025 02:29:57 PM (10 months ago)
- Location:
- wck-custom-fields-and-custom-post-types-creator
- Files:
-
- 4 edited
- 1 copied
-
tags/2.3.7 (copied) (copied from wck-custom-fields-and-custom-post-types-creator/trunk)
-
tags/2.3.7/readme.txt (modified) (2 diffs)
-
tags/2.3.7/wck.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wck-custom-fields-and-custom-post-types-creator/tags/2.3.7/readme.txt
r2934502 r3234805 4 4 Tags: custom fields, custom field, wordpress custom fields, custom post type, custom post types, post types, repeater fields, meta box, metabox, custom taxonomy, custom fields creator, post meta 5 5 Requires at least: 3.1 6 Tested up to: 6. 2.27 Stable tag: 2.3. 66 Tested up to: 6.7.1 7 Stable tag: 2.3.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 136 136 137 137 == Changelog == 138 = 2.3.7 = 139 * Fix a deprecated message regarding textdomain 140 138 141 = 2.3.6 = 139 142 * Fix issue with WP 6.1 not showing metaboxes -
wck-custom-fields-and-custom-post-types-creator/tags/2.3.7/wck.php
r2934502 r3234805 4 4 Description: WordPress Creation Kit consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's. 5 5 Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe 6 Version: 2.3. 66 Version: 2.3.7 7 7 Author URI: http://www.cozmoslabs.com 8 8 Text Domain: wck … … 32 32 33 33 /* ready for localization */ 34 $current_theme = wp_get_theme(); 35 if( !empty( $current_theme->stylesheet ) && file_exists( get_theme_root().'/'. $current_theme->stylesheet .'/local_wck_lang' ) ) 36 load_plugin_textdomain( 'wck', false, basename( dirname( __FILE__ ) ).'/../../themes/'.$current_theme->stylesheet.'/local_wck_lang' ); 37 else 38 load_plugin_textdomain( 'wck', false, basename( dirname( __FILE__ ) ) . '/languages' ); 34 add_action( 'init', 'wck_load_textdomain' ); 35 function wck_load_textdomain(){ 36 $current_theme = wp_get_theme(); 37 if (!empty($current_theme->stylesheet) && file_exists(get_theme_root() . '/' . $current_theme->stylesheet . '/local_wck_lang')) 38 load_plugin_textdomain('wck', false, basename(dirname(__FILE__)) . '/../../themes/' . $current_theme->stylesheet . '/local_wck_lang'); 39 else 40 load_plugin_textdomain('wck', false, basename(dirname(__FILE__)) . '/languages'); 41 } 39 42 40 43 -
wck-custom-fields-and-custom-post-types-creator/trunk/readme.txt
r2934502 r3234805 4 4 Tags: custom fields, custom field, wordpress custom fields, custom post type, custom post types, post types, repeater fields, meta box, metabox, custom taxonomy, custom fields creator, post meta 5 5 Requires at least: 3.1 6 Tested up to: 6. 2.27 Stable tag: 2.3. 66 Tested up to: 6.7.1 7 Stable tag: 2.3.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 136 136 137 137 == Changelog == 138 = 2.3.7 = 139 * Fix a deprecated message regarding textdomain 140 138 141 = 2.3.6 = 139 142 * Fix issue with WP 6.1 not showing metaboxes -
wck-custom-fields-and-custom-post-types-creator/trunk/wck.php
r2934502 r3234805 4 4 Description: WordPress Creation Kit consists of three tools that can help you create and maintain custom post types, custom taxonomies and most importantly, custom fields and metaboxes for your posts, pages or CPT's. 5 5 Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe 6 Version: 2.3. 66 Version: 2.3.7 7 7 Author URI: http://www.cozmoslabs.com 8 8 Text Domain: wck … … 32 32 33 33 /* ready for localization */ 34 $current_theme = wp_get_theme(); 35 if( !empty( $current_theme->stylesheet ) && file_exists( get_theme_root().'/'. $current_theme->stylesheet .'/local_wck_lang' ) ) 36 load_plugin_textdomain( 'wck', false, basename( dirname( __FILE__ ) ).'/../../themes/'.$current_theme->stylesheet.'/local_wck_lang' ); 37 else 38 load_plugin_textdomain( 'wck', false, basename( dirname( __FILE__ ) ) . '/languages' ); 34 add_action( 'init', 'wck_load_textdomain' ); 35 function wck_load_textdomain(){ 36 $current_theme = wp_get_theme(); 37 if (!empty($current_theme->stylesheet) && file_exists(get_theme_root() . '/' . $current_theme->stylesheet . '/local_wck_lang')) 38 load_plugin_textdomain('wck', false, basename(dirname(__FILE__)) . '/../../themes/' . $current_theme->stylesheet . '/local_wck_lang'); 39 else 40 load_plugin_textdomain('wck', false, basename(dirname(__FILE__)) . '/languages'); 41 } 39 42 40 43
Note: See TracChangeset
for help on using the changeset viewer.