Plugin Directory

Changeset 3234805


Ignore:
Timestamp:
02/04/2025 02:29:57 PM (10 months ago)
Author:
madalin.ungureanu
Message:

tagging version 2.3.7

Location:
wck-custom-fields-and-custom-post-types-creator
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wck-custom-fields-and-custom-post-types-creator/tags/2.3.7/readme.txt

    r2934502 r3234805  
    44Tags: 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
    55Requires at least: 3.1
    6 Tested up to: 6.2.2
    7 Stable tag: 2.3.6
     6Tested up to: 6.7.1
     7Stable tag: 2.3.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136
    137137== Changelog ==
     138= 2.3.7 =
     139* Fix a deprecated message regarding textdomain
     140
    138141= 2.3.6 =
    139142* 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  
    44Description: 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.
    55Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe
    6 Version: 2.3.6
     6Version: 2.3.7
    77Author URI: http://www.cozmoslabs.com
    88Text Domain: wck
     
    3232
    3333/* 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' );
     34add_action( 'init', 'wck_load_textdomain' );
     35function 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}
    3942
    4043
  • wck-custom-fields-and-custom-post-types-creator/trunk/readme.txt

    r2934502 r3234805  
    44Tags: 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
    55Requires at least: 3.1
    6 Tested up to: 6.2.2
    7 Stable tag: 2.3.6
     6Tested up to: 6.7.1
     7Stable tag: 2.3.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136
    137137== Changelog ==
     138= 2.3.7 =
     139* Fix a deprecated message regarding textdomain
     140
    138141= 2.3.6 =
    139142* Fix issue with WP 6.1 not showing metaboxes
  • wck-custom-fields-and-custom-post-types-creator/trunk/wck.php

    r2934502 r3234805  
    44Description: 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.
    55Author: Cozmoslabs, Madalin Ungureanu, Cristian Antohe
    6 Version: 2.3.6
     6Version: 2.3.7
    77Author URI: http://www.cozmoslabs.com
    88Text Domain: wck
     
    3232
    3333/* 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' );
     34add_action( 'init', 'wck_load_textdomain' );
     35function 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}
    3942
    4043
Note: See TracChangeset for help on using the changeset viewer.