Custom Post Type UI - Version 0.8.5

Version Description

  • Fix issue with menu_postion being quoted in CPT get_code functionality.
Download this release

Release Info

Developer tw2113
Plugin Icon 128x128 Custom Post Type UI
Version 0.8.5
Comparing to
See all releases

Code changes from version 0.8.4 to 0.8.5

Files changed (2) hide show
  1. custom-post-type-ui.php +3 -3
  2. readme.txt +7 -1
custom-post-type-ui.php CHANGED
@@ -4,14 +4,14 @@ Plugin Name: Custom Post Type UI
4
  Plugin URI: http://webdevstudios.com/plugin/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios.com
7
- Version: 0.8.4
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
11
  */
12
 
13
  // Define current version constant
14
- define( 'CPT_VERSION', '0.8.4' );
15
 
16
  // Define current WordPress version constant
17
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
@@ -749,7 +749,7 @@ if ( isset($_GET['cpt_msg'] ) && $_GET['cpt_msg'] == 'del' ) { ?>
749
  }
750
 
751
  if ( !empty( $cpt_post_type["menu_position"] ) ) {
752
- $custom_post_type .= "'menu_position' => '" . $cpt_post_type["menu_position"] . "',\n";
753
  }
754
 
755
  if ( !empty( $cpt_post_type["menu_icon"] ) ) {
4
  Plugin URI: http://webdevstudios.com/plugin/custom-post-type-ui/
5
  Description: Admin panel for creating custom post types and custom taxonomies in WordPress
6
  Author: WebDevStudios.com
7
+ Version: 0.8.5
8
  Author URI: http://webdevstudios.com/
9
  Text Domain: cpt-plugin
10
  License: GPLv2
11
  */
12
 
13
  // Define current version constant
14
+ define( 'CPT_VERSION', '0.8.5' );
15
 
16
  // Define current WordPress version constant
17
  define( 'CPTUI_WP_VERSION', get_bloginfo( 'version' ) );
749
  }
750
 
751
  if ( !empty( $cpt_post_type["menu_position"] ) ) {
752
+ $custom_post_type .= "'menu_position' => " . $cpt_post_type["menu_position"] . ",\n";
753
  }
754
 
755
  if ( !empty( $cpt_post_type["menu_icon"] ) ) {
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, cck, taxonomy, tax, custom
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
- Stable tag: 0.8.4
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -27,6 +27,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
27
 
28
  == Changelog ==
29
 
 
 
 
30
  = 0.8.4 =
31
  * Fix issue with get code and post types/taxonomies that use a dash instead of underscore. Props Evan Mullins/circlecube.
32
 
@@ -151,6 +154,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
151
 
152
  == Upgrade Notice ==
153
 
 
 
 
154
  = 0.8.4 =
155
  * Fix issue with get code and post types/taxonomies that use a dash instead of underscore. Props Evan Mullins/circlecube.
156
 
4
  Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
5
  Requires at least: 3.5
6
  Tested up to: 3.9.1
7
+ Stable tag: 0.8.5
8
  License: GPLv2
9
 
10
  Admin UI for creating custom post types and custom taxonomies in WordPress
27
 
28
  == Changelog ==
29
 
30
+ = 0.8.5 =
31
+ * Fix issue with menu_postion being quoted in CPT get_code functionality.
32
+
33
  = 0.8.4 =
34
  * Fix issue with get code and post types/taxonomies that use a dash instead of underscore. Props Evan Mullins/circlecube.
35
 
154
 
155
  == Upgrade Notice ==
156
 
157
+ = 0.8.5 =
158
+ * Fix issue with menu_postion being quoted in CPT get_code functionality.
159
+
160
  = 0.8.4 =
161
  * Fix issue with get code and post types/taxonomies that use a dash instead of underscore. Props Evan Mullins/circlecube.
162