WP Admin UI Customize - Version 1.5.4

Version Description

  • Fixed: Empty metaboxes load.
Download this release

Release Info

Developer gqevu6bsiz
Plugin Icon wp plugin WP Admin UI Customize
Version 1.5.4
Comparing to
See all releases

Code changes from version 1.5.3 to 1.5.4

Files changed (2) hide show
  1. readme.txt +6 -3
  2. wp-admin-ui-customize.php +9 -5
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_5_3
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.8
6
- Tested up to: 4.2.2
7
- Stable tag: 1.5.3
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -50,6 +50,9 @@ These to Customization is possible.
50
 
51
  == Changelog ==
52
 
 
 
 
53
  = 1.5.3 =
54
  * Updated: Organize the Html and CSS and Javascript.
55
  * Updated: Remove can items when before update sidemenu setting.
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_5_4
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.8
6
+ Tested up to: 4.2.3
7
+ Stable tag: 1.5.4
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.5.4 =
54
+ * Fixed: Empty metaboxes load.
55
+
56
  = 1.5.3 =
57
  * Updated: Organize the Html and CSS and Javascript.
58
  * Updated: Remove can items when before update sidemenu setting.
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_3
6
- Version: 1.5.3
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_3
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -58,7 +58,7 @@ class WP_Admin_UI_Customize
58
 
59
 
60
  function __construct() {
61
- $this->Ver = '1.5.3';
62
  $this->Name = 'WP Admin UI Customize';
63
  $this->Dir = plugin_dir_path( __FILE__ );
64
  $this->Url = plugin_dir_url( __FILE__ );
@@ -713,8 +713,12 @@ class WP_Admin_UI_Customize
713
  if( is_array( $box ) ) {
714
 
715
  foreach( $box as $metabox_id => $metabox_detail ) {
 
 
716
 
717
- $regist_meta_boxes['metaboxes'][$post_type][$context][$priority][$metabox_id] = strip_tags( $metabox_detail['title'] );
 
 
718
 
719
  }
720
 
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_4
6
+ Version: 1.5.4
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_4
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
58
 
59
 
60
  function __construct() {
61
+ $this->Ver = '1.5.4';
62
  $this->Name = 'WP Admin UI Customize';
63
  $this->Dir = plugin_dir_path( __FILE__ );
64
  $this->Url = plugin_dir_url( __FILE__ );
713
  if( is_array( $box ) ) {
714
 
715
  foreach( $box as $metabox_id => $metabox_detail ) {
716
+
717
+ if( !empty( $metabox_detail ) ) {
718
 
719
+ $regist_meta_boxes['metaboxes'][$post_type][$context][$priority][$metabox_id] = strip_tags( $metabox_detail['title'] );
720
+
721
+ }
722
 
723
  }
724