WP Admin UI Customize - Version 1.4.4.2

Version Description

  • Fixed: Timing change of metabox load.
Download this release

Release Info

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

Code changes from version 1.4.4.1 to 1.4.4.2

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-admin-ui-customize.php +5 -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_4_4_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.6.1
6
  Tested up to: 3.8.1
7
- Stable tag: 1.4.4.1
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.4.4.1 =
54
  * Fixed: Error show of not core update notice settings.
55
  * Fixed: Submit metabox is setting of custom post type of Manager Metabox.
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_4_4_2
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.6.1
6
  Tested up to: 3.8.1
7
+ Stable tag: 1.4.4.2
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.4.4.2 =
54
+ * Fixed: Timing change of metabox load.
55
+
56
  = 1.4.4.1 =
57
  * Fixed: Error show of not core update notice settings.
58
  * Fixed: Submit metabox is setting of custom post type of Manager Metabox.
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_4_4_1
6
- Version: 1.4.4.1
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_4_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -55,7 +55,7 @@ class WP_Admin_UI_Customize
55
 
56
 
57
  function __construct() {
58
- $this->Ver = '1.4.4.1';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
@@ -129,7 +129,7 @@ class WP_Admin_UI_Customize
129
  add_action( 'admin_menu' , array( $this , 'sidemenu_default_load' ) , 10000 );
130
 
131
  // default post metabox load.
132
- add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10 );
133
 
134
  // default post metabox dashbaord load.
135
  add_action( 'admin_head' , array( $this , 'post_meta_boxes_dashboard_load' ) , 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_4_4_2
6
+ Version: 1.4.4.2
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_4_4_2
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
55
 
56
 
57
  function __construct() {
58
+ $this->Ver = '1.4.4.2';
59
  $this->Name = 'WP Admin UI Customize';
60
  $this->Dir = plugin_dir_path( __FILE__ );
61
  $this->Url = plugin_dir_url( __FILE__ );
129
  add_action( 'admin_menu' , array( $this , 'sidemenu_default_load' ) , 10000 );
130
 
131
  // default post metabox load.
132
+ add_action( 'admin_head' , array( $this , 'post_meta_boxes_load' ) , 10000 );
133
 
134
  // default post metabox dashbaord load.
135
  add_action( 'admin_head' , array( $this , 'post_meta_boxes_dashboard_load' ) , 10 );