Plugin Directory

Changeset 2918438


Ignore:
Timestamp:
05/29/2023 07:44:11 AM (3 years ago)
Author:
andreadegiovine
Message:

4.0.2

Location:
custom-post-types
Files:
41 added
342 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • custom-post-types/trunk/custom-post-types.php

    r2917815 r2918438  
    88Text Domain: custom-post-types
    99Domain Path: /languages/
    10 Version: 4.0.1
     10Version: 4.0.2
    1111*/
    1212
     
    369369                    ],
    370370                    'item_count' => [
    371                         'label' => __('Fields', 'custom-post-types'),
     371                        'label' => __('Fields', 'custom-post-types') . ' (' . __('Key', 'custom-post-types') . ')',
    372372                        'callback' => function ($post_id) {
    373373                            $fields = get_post_meta($post_id, 'fields', true);
     
    375375                            $fields_labels_array = array_map(
    376376                                function ($field) {
    377                                     return $field['label'];
     377                                    return $field['label'] . ' (' . $field['key'] . ')';
    378378                                },
    379379                                $fields
     
    897897            $this->getAdminPages()->initRegisteredPages();
    898898            $this->getNotices()->initRegisteredNotices();
    899         }, PHP_INT_MAX);
     899        });
    900900    }
    901901
  • custom-post-types/trunk/readme.txt

    r2917815 r2918438  
    55Requires at least: 4.0
    66Tested up to: 6.2
    7 Stable tag: 4.0.1
     7Stable tag: 4.0.2
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    240240== Changelog ==
    241241
     242= 4.0.2 =
     243* Support for SEO plugin (thanks to @jitka88)
     244
    242245= 4.0.1 =
    243246* Add shortcodes for term and option fields
     
    511514== Upgrade Notice ==
    512515
     516= 4.0.2 =
     517Support for SEO plugin (thanks to @jitka88)
     518
    513519= 4.0.1 =
    514520Add shortcodes for term and option fields
Note: See TracChangeset for help on using the changeset viewer.