Version Description
- 2022-09-08 =
- Fixed: Various issues caused by a misplaced output for
ob_get_clean()
outside of function.
Download this release
Release Info
Developer | tw2113 |
Plugin | Custom Post Type UI |
Version | 1.13.1 |
Comparing to | |
See all releases |
Code changes from version 1.13.0 to 1.13.1
- custom-post-type-ui.php +3 -3
- inc/tools-sections/tools-taxonomies.php +2 -1
- readme.txt +7 -1
custom-post-type-ui.php
CHANGED
@@ -16,7 +16,7 @@
|
|
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.13.
|
20 |
* Author URI: https://webdevstudios.com/
|
21 |
* Text Domain: custom-post-type-ui
|
22 |
* Domain Path: /languages
|
@@ -33,8 +33,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
33 |
exit;
|
34 |
}
|
35 |
|
36 |
-
define( 'CPT_VERSION', '1.13.
|
37 |
-
define( 'CPTUI_VERSION', '1.13.
|
38 |
define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
|
39 |
|
40 |
/**
|
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.13.1
|
20 |
* Author URI: https://webdevstudios.com/
|
21 |
* Text Domain: custom-post-type-ui
|
22 |
* Domain Path: /languages
|
33 |
exit;
|
34 |
}
|
35 |
|
36 |
+
define( 'CPT_VERSION', '1.13.1' ); // Left for legacy purposes.
|
37 |
+
define( 'CPTUI_VERSION', '1.13.1' );
|
38 |
define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
|
39 |
|
40 |
/**
|
inc/tools-sections/tools-taxonomies.php
CHANGED
@@ -36,8 +36,9 @@ add_action( 'init', '<?php echo esc_html( $callback ); ?>' );
|
|
36 |
} else {
|
37 |
esc_html_e( 'No taxonomies to display at this time', 'custom-post-type-ui' );
|
38 |
}
|
|
|
39 |
}
|
40 |
-
|
41 |
/**
|
42 |
* Create output for single taxonomy to be ready for copy/paste from Get Code.
|
43 |
*
|
36 |
} else {
|
37 |
esc_html_e( 'No taxonomies to display at this time', 'custom-post-type-ui' );
|
38 |
}
|
39 |
+
echo trim( ob_get_clean() );
|
40 |
}
|
41 |
+
|
42 |
/**
|
43 |
* Create output for single taxonomy to be ready for copy/paste from Get Code.
|
44 |
*
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types
|
5 |
Requires at least: 5.9
|
6 |
Tested up to: 6.0.2
|
7 |
-
Stable tag: 1.13.
|
8 |
License: GPL-2.0+
|
9 |
Requires PHP: 5.6
|
10 |
|
@@ -36,6 +36,9 @@ Custom Post Type UI development is managed on GitHub, with official releases pub
|
|
36 |
|
37 |
== Changelog ==
|
38 |
|
|
|
|
|
|
|
39 |
= 1.13.0 - 2022-09-07 =
|
40 |
* Added: Notes regarding featured image and post format support also needing `add_theme_support` to work.
|
41 |
* Fixed: Issues around double quotes and JSON export with the post type description field
|
@@ -75,6 +78,9 @@ Custom Post Type UI development is managed on GitHub, with official releases pub
|
|
75 |
|
76 |
== Upgrade Notice ==
|
77 |
|
|
|
|
|
|
|
78 |
= 1.13.0 - 2022-09-07 =
|
79 |
* Added: Notes regarding featured image and post format support also needing `add_theme_support` to work.
|
80 |
* Fixed: Issues around double quotes and JSON export with the post type description field
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types
|
5 |
Requires at least: 5.9
|
6 |
Tested up to: 6.0.2
|
7 |
+
Stable tag: 1.13.1
|
8 |
License: GPL-2.0+
|
9 |
Requires PHP: 5.6
|
10 |
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
+
= 1.13.1 - 2022-09-08 =
|
40 |
+
* Fixed: Various issues caused by a misplaced output for `ob_get_clean()` outside of function.
|
41 |
+
|
42 |
= 1.13.0 - 2022-09-07 =
|
43 |
* Added: Notes regarding featured image and post format support also needing `add_theme_support` to work.
|
44 |
* Fixed: Issues around double quotes and JSON export with the post type description field
|
78 |
|
79 |
== Upgrade Notice ==
|
80 |
|
81 |
+
= 1.13.1 - 2022-09-08 =
|
82 |
+
* Fixed: Various issues caused by a misplaced output for `ob_get_clean()` outside of function.
|
83 |
+
|
84 |
= 1.13.0 - 2022-09-07 =
|
85 |
* Added: Notes regarding featured image and post format support also needing `add_theme_support` to work.
|
86 |
* Fixed: Issues around double quotes and JSON export with the post type description field
|