Version Description
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.13.3 |
Comparing to | |
See all releases |
Code changes from version 4.13.2 to 4.13.3
- inc/core.php +1 -1
- inc/loader.php +1 -1
- js/clone.js +2 -2
- meta-box.php +1 -1
- readme.txt +2 -2
inc/core.php
CHANGED
@@ -109,7 +109,7 @@ class RWMB_Core {
|
|
109 |
*
|
110 |
* @param WP_Post $post The current post object.
|
111 |
*/
|
112 |
-
public function add_context(
|
113 |
$hook = current_filter();
|
114 |
$context = 'edit_form_top' === $hook ? 'form_top' : substr( $hook, 10 );
|
115 |
do_meta_boxes( null, $context, $post );
|
109 |
*
|
110 |
* @param WP_Post $post The current post object.
|
111 |
*/
|
112 |
+
public function add_context( $post ) {
|
113 |
$hook = current_filter();
|
114 |
$context = 'edit_form_top' === $hook ? 'form_top' : substr( $hook, 10 );
|
115 |
do_meta_boxes( null, $context, $post );
|
inc/loader.php
CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader {
|
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
-
define( 'RWMB_VER', '4.13.
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
+
define( 'RWMB_VER', '4.13.3' );
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
js/clone.js
CHANGED
@@ -202,7 +202,7 @@ jQuery( function ( $ ) {
|
|
202 |
$container.sortable( {
|
203 |
handle: '.rwmb-clone-icon',
|
204 |
placeholder: ' rwmb-clone rwmb-sortable-placeholder',
|
205 |
-
items: '.rwmb-clone',
|
206 |
start: function ( event, ui ) {
|
207 |
// Make the placeholder has the same height as dragged item
|
208 |
ui.placeholder.height( ui.item.outerHeight() );
|
@@ -250,7 +250,7 @@ jQuery( function ( $ ) {
|
|
250 |
.sortable( {
|
251 |
handle: '.rwmb-clone-icon',
|
252 |
placeholder: ' rwmb-clone rwmb-sortable-placeholder',
|
253 |
-
items: '.rwmb-clone',
|
254 |
start: function ( event, ui ) {
|
255 |
// Make the placeholder has the same height as dragged item
|
256 |
ui.placeholder.height( ui.item.outerHeight() );
|
202 |
$container.sortable( {
|
203 |
handle: '.rwmb-clone-icon',
|
204 |
placeholder: ' rwmb-clone rwmb-sortable-placeholder',
|
205 |
+
items: '> .rwmb-clone',
|
206 |
start: function ( event, ui ) {
|
207 |
// Make the placeholder has the same height as dragged item
|
208 |
ui.placeholder.height( ui.item.outerHeight() );
|
250 |
.sortable( {
|
251 |
handle: '.rwmb-clone-icon',
|
252 |
placeholder: ' rwmb-clone rwmb-sortable-placeholder',
|
253 |
+
items: '> .rwmb-clone',
|
254 |
start: function ( event, ui ) {
|
255 |
// Make the placeholder has the same height as dragged item
|
256 |
ui.placeholder.height( ui.item.outerHeight() );
|
meta-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
-
* Version: 4.13.
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
+
* Version: 4.13.3
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: metabox, rilwis, fitwp, f-j-kaiser, funkatronic, PerWiklander, rua
|
|
3 |
Donate link: http://paypal.me/anhtnt
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.3
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 4.13.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|
3 |
Donate link: http://paypal.me/anhtnt
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.3
|
6 |
+
Tested up to: 4.9.4
|
7 |
+
Stable tag: 4.13.3
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|