Meta Box - Version 5.4.6

Version Description

  • 2021-07-08 =
  • Remove debug code
Download this release

Release Info

Developer rilwis
Plugin Icon 128x128 Meta Box
Version 5.4.6
Comparing to
See all releases

Code changes from version 5.4.5 to 5.4.6

Files changed (3) hide show
  1. inc/loader.php +1 -1
  2. meta-box.php +2 -21
  3. readme.txt +4 -1
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', '5.4.5' );
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', '5.4.6' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
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: 5.4.5
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
@@ -17,23 +17,4 @@ if ( defined( 'ABSPATH' ) && ! defined( 'RWMB_VER' ) ) {
17
  require_once dirname( __FILE__ ) . '/inc/loader.php';
18
  $rwmb_loader = new RWMB_Loader();
19
  $rwmb_loader->init();
20
- }
21
-
22
- add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) {
23
- $meta_boxes[] = [
24
- 'title' => 'Test',
25
- 'id' => 'te',
26
- 'fields' => [
27
- [
28
- 'type' => 'heading',
29
- 'name' => 'My name is a headering',
30
- ],
31
- [
32
- 'type' => 'heading',
33
- 'name' => 'My name is a headering',
34
- 'desc' => 'adsffaw elakhw flakwehf ',
35
- ],
36
- ],
37
- ];
38
- return $meta_boxes;
39
- } );
3
  * Plugin Name: Meta Box
4
  * Plugin URI: https://metabox.io
5
  * Description: Create custom meta boxes and custom fields in WordPress.
6
+ * Version: 5.4.6
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
17
  require_once dirname( __FILE__ ) . '/inc/loader.php';
18
  $rwmb_loader = new RWMB_Loader();
19
  $rwmb_loader->init();
20
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: meta box, custom fields, custom post types, custom taxonomies, cpt, meta b
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.7.2
8
- Stable tag: 5.4.5
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
@@ -168,6 +168,9 @@ To getting started with the plugin, please read the [Quick Start Guide](https://
168
 
169
  == Changelog ==
170
 
 
 
 
171
  = 5.4.5 - 2021-07-08 =
172
  - Fix styling issue for heading field and side meta boxes
173
 
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 5.7.2
8
+ Stable tag: 5.4.6
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
168
 
169
  == Changelog ==
170
 
171
+ = 5.4.6 - 2021-07-08 =
172
+ - Remove debug code
173
+
174
  = 5.4.5 - 2021-07-08 =
175
  - Fix styling issue for heading field and side meta boxes
176