Version Description
- 2019-05-20 =
- Added: "themes" is now a reserved post type slug due to conflicts with WordPress internally.
- Fixed: Updated wording around "Supports" section of post type settings screen.
Download this release
Release Info
Developer | tw2113 |
Plugin | Custom Post Type UI |
Version | 1.6.2 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.2
- custom-post-type-ui.php +3 -3
- inc/post-types.php +2 -1
- readme.txt +10 -2
custom-post-type-ui.php
CHANGED
@@ -16,7 +16,7 @@ Plugin Name: Custom Post Type UI
|
|
16 |
Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
|
17 |
Description: Admin panel for creating custom post types and custom taxonomies in WordPress
|
18 |
Author: WebDevStudios
|
19 |
-
Version: 1.6.
|
20 |
Author URI: https://webdevstudios.com/
|
21 |
Text Domain: custom-post-type-ui
|
22 |
Domain Path: /languages
|
@@ -28,8 +28,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
28 |
exit;
|
29 |
}
|
30 |
|
31 |
-
define( 'CPT_VERSION', '1.6.
|
32 |
-
define( 'CPTUI_VERSION', '1.6.
|
33 |
define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
|
34 |
|
35 |
/**
|
16 |
Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
|
17 |
Description: Admin panel for creating custom post types and custom taxonomies in WordPress
|
18 |
Author: WebDevStudios
|
19 |
+
Version: 1.6.2
|
20 |
Author URI: https://webdevstudios.com/
|
21 |
Text Domain: custom-post-type-ui
|
22 |
Domain Path: /languages
|
28 |
exit;
|
29 |
}
|
30 |
|
31 |
+
define( 'CPT_VERSION', '1.6.2' ); // Left for legacy purposes.
|
32 |
+
define( 'CPTUI_VERSION', '1.6.2' );
|
33 |
define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
|
34 |
|
35 |
/**
|
inc/post-types.php
CHANGED
@@ -910,7 +910,7 @@ function cptui_manage_post_types() {
|
|
910 |
|
911 |
echo $ui->get_tr_start() . $ui->get_th_start() . esc_html__( 'Supports', 'custom-post-type-ui' );
|
912 |
|
913 |
-
echo $ui->get_p( esc_html__( 'Add support for various available post editor features on the right. A checked value means the post type
|
914 |
|
915 |
echo $ui->get_p( esc_html__( 'Use the "None" option to explicitly set "supports" to false.', 'custom-post-type-ui' ) );
|
916 |
|
@@ -1565,6 +1565,7 @@ function cptui_reserved_post_types() {
|
|
1565 |
'action',
|
1566 |
'order',
|
1567 |
'theme',
|
|
|
1568 |
'fields',
|
1569 |
'custom_css',
|
1570 |
'customize_changeset',
|
910 |
|
911 |
echo $ui->get_tr_start() . $ui->get_th_start() . esc_html__( 'Supports', 'custom-post-type-ui' );
|
912 |
|
913 |
+
echo $ui->get_p( esc_html__( 'Add support for various available post editor features on the right. A checked value means the post type feature is supported.', 'custom-post-type-ui' ) );
|
914 |
|
915 |
echo $ui->get_p( esc_html__( 'Use the "None" option to explicitly set "supports" to false.', 'custom-post-type-ui' ) );
|
916 |
|
1565 |
'action',
|
1566 |
'order',
|
1567 |
'theme',
|
1568 |
+
'themes',
|
1569 |
'fields',
|
1570 |
'custom_css',
|
1571 |
'customize_changeset',
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: webdevstudios, pluginize, tw2113, vegasgeek, modemlooper, williams
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types
|
5 |
Requires at least: 4.7
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.6.
|
8 |
License: GPL-2.0+
|
9 |
Requires PHP: 5.2
|
10 |
|
@@ -31,6 +31,10 @@ Official development of Custom Post Type UI is on GitHub, with official stable r
|
|
31 |
|
32 |
== Changelog ==
|
33 |
|
|
|
|
|
|
|
|
|
34 |
= 1.6.1 - 2018-12-03 =
|
35 |
* Fixed: Missed quote for "publicly_queryable" in taxonomy "get code" output.
|
36 |
* Fixed: Adjusted handling of capitalization on the word "false" when being used to disable a taxonomy metabox via the "metabox callback" setting. The word "false" needs to be all lowercase to disable.
|
@@ -128,6 +132,10 @@ Official development of Custom Post Type UI is on GitHub, with official stable r
|
|
128 |
|
129 |
== Upgrade Notice ==
|
130 |
|
|
|
|
|
|
|
|
|
131 |
= 1.6.1 - 2018-12-03 =
|
132 |
* Fixed: Missed quote for "publicly_queryable" in taxonomy "get code" output.
|
133 |
* Fixed: Adjusted handling of capitalization on the word "false" when being used to disable a taxonomy metabox via the "metabox callback" setting. The word "false" needs to be all lowercase to disable.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3084056
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types
|
5 |
Requires at least: 4.7
|
6 |
+
Tested up to: 5.2
|
7 |
+
Stable tag: 1.6.2
|
8 |
License: GPL-2.0+
|
9 |
Requires PHP: 5.2
|
10 |
|
31 |
|
32 |
== Changelog ==
|
33 |
|
34 |
+
= 1.6.2 - 2019-05-20 =
|
35 |
+
* Added: "themes" is now a reserved post type slug due to conflicts with WordPress internally.
|
36 |
+
* Fixed: Updated wording around "Supports" section of post type settings screen.
|
37 |
+
|
38 |
= 1.6.1 - 2018-12-03 =
|
39 |
* Fixed: Missed quote for "publicly_queryable" in taxonomy "get code" output.
|
40 |
* Fixed: Adjusted handling of capitalization on the word "false" when being used to disable a taxonomy metabox via the "metabox callback" setting. The word "false" needs to be all lowercase to disable.
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
135 |
+
= 1.6.2 - 2019-05-20 =
|
136 |
+
* Added: "themes" is now a reserved post type slug due to conflicts with WordPress internally.
|
137 |
+
* Fixed: Updated wording around "Supports" section of post type settings screen.
|
138 |
+
|
139 |
= 1.6.1 - 2018-12-03 =
|
140 |
* Fixed: Missed quote for "publicly_queryable" in taxonomy "get code" output.
|
141 |
* Fixed: Adjusted handling of capitalization on the word "false" when being used to disable a taxonomy metabox via the "metabox callback" setting. The word "false" needs to be all lowercase to disable.
|