Version Description
- Fix: CSS alignment for sort clone icon for field type
group
(require Meta Box Group extension) - Fix: rwmbSelect is not defined
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.5.5 |
Comparing to | |
See all releases |
Code changes from version 4.5.4 to 4.5.5
- css/style.css +1 -0
- inc/fields/select-advanced.php +2 -1
- meta-box.php +2 -2
- readme.txt +5 -1
css/style.css
CHANGED
@@ -56,6 +56,7 @@
|
|
56 |
height: 23px;
|
57 |
width: 15px;
|
58 |
float: left;
|
|
|
59 |
}
|
60 |
|
61 |
/* Fix empty block below admin footer (issue #24) */
|
56 |
height: 23px;
|
57 |
width: 15px;
|
58 |
float: left;
|
59 |
+
margin-left: -15px;
|
60 |
}
|
61 |
|
62 |
/* Fix empty block below admin footer (issue #24) */
|
inc/fields/select-advanced.php
CHANGED
@@ -20,7 +20,8 @@ if ( ! class_exists( 'RWMB_Select_Advanced_Field' ) )
|
|
20 |
wp_enqueue_style( 'rwmb-select-advanced', RWMB_CSS_URL . 'select-advanced.css', array(), RWMB_VER );
|
21 |
|
22 |
wp_register_script( 'select2', RWMB_JS_URL . 'select2/select2.min.js', array(), '3.2', true );
|
23 |
-
wp_enqueue_script( 'rwmb-select
|
|
|
24 |
}
|
25 |
|
26 |
/**
|
20 |
wp_enqueue_style( 'rwmb-select-advanced', RWMB_CSS_URL . 'select-advanced.css', array(), RWMB_VER );
|
21 |
|
22 |
wp_register_script( 'select2', RWMB_JS_URL . 'select2/select2.min.js', array(), '3.2', true );
|
23 |
+
wp_enqueue_script( 'rwmb-select', RWMB_JS_URL . 'select.js', array(), RWMB_VER, true );
|
24 |
+
wp_enqueue_script( 'rwmb-select-advanced', RWMB_JS_URL . 'select-advanced.js', array( 'select2', 'rwmb-select' ), RWMB_VER, true );
|
25 |
}
|
26 |
|
27 |
/**
|
meta-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Meta Box
|
4 |
Plugin URI: http://metabox.io
|
5 |
Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
|
6 |
-
Version: 4.5.
|
7 |
Author: Rilwis
|
8 |
Author URI: http://www.deluxeblogtips.com
|
9 |
License: GPL2+
|
@@ -13,7 +13,7 @@ License: GPL2+
|
|
13 |
defined( 'ABSPATH' ) || exit;
|
14 |
|
15 |
// Script version, used to add version for scripts and styles
|
16 |
-
define( 'RWMB_VER', '4.5.
|
17 |
|
18 |
// Define plugin URLs, for fast enqueuing scripts and styles
|
19 |
if ( ! defined( 'RWMB_URL' ) )
|
3 |
Plugin Name: Meta Box
|
4 |
Plugin URI: http://metabox.io
|
5 |
Description: Create meta box for editing pages in WordPress. Compatible with custom post types since WP 3.0
|
6 |
+
Version: 4.5.5
|
7 |
Author: Rilwis
|
8 |
Author URI: http://www.deluxeblogtips.com
|
9 |
License: GPL2+
|
13 |
defined( 'ABSPATH' ) || exit;
|
14 |
|
15 |
// Script version, used to add version for scripts and styles
|
16 |
+
define( 'RWMB_VER', '4.5.5' );
|
17 |
|
18 |
// Define plugin URLs, for fast enqueuing scripts and styles
|
19 |
if ( ! defined( 'RWMB_URL' ) )
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.deluxeblogtips.com/donate
|
|
4 |
Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 4.5.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a complete tool to create meta box and custom fields in WordPress: lightweight, powerful and easy-to-use.
|
@@ -69,6 +69,10 @@ To getting started with the plugin API, please read [this tutorial](http://metab
|
|
69 |
|
70 |
== Changelog ==
|
71 |
|
|
|
|
|
|
|
|
|
72 |
= 4.5.4 =
|
73 |
* Improvement: Add "Select All|None" for `select`, `select_advanced`, `post` fields
|
74 |
* Improvement: Add `max_clone` parameter which limits number of clones
|
4 |
Tags: meta-box, custom-fields, custom-field, meta, meta-boxes
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 4.5.5
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a complete tool to create meta box and custom fields in WordPress: lightweight, powerful and easy-to-use.
|
69 |
|
70 |
== Changelog ==
|
71 |
|
72 |
+
= 4.5.5 =
|
73 |
+
* Fix: CSS alignment for sort clone icon for field type `group` (require Meta Box Group extension)
|
74 |
+
* Fix: rwmbSelect is not defined
|
75 |
+
|
76 |
= 4.5.4 =
|
77 |
* Improvement: Add "Select All|None" for `select`, `select_advanced`, `post` fields
|
78 |
* Improvement: Add `max_clone` parameter which limits number of clones
|