Version Description
- Fix: remove default `maxlength
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.7.1 |
Comparing to | |
See all releases |
Code changes from version 4.7 to 4.7.1
- inc/fields/text.php +1 -1
- meta-box-loader.php +1 -1
- meta-box.php +2 -2
- readme.txt +5 -1
inc/fields/text.php
CHANGED
@@ -22,7 +22,7 @@ if ( ! class_exists( 'RWMB_Text_Field' ) )
|
|
22 |
|
23 |
$field = wp_parse_args( $field, array(
|
24 |
'size' => 30,
|
25 |
-
'maxlength' =>
|
26 |
'pattern' => false,
|
27 |
'placeholder' => '',
|
28 |
) );
|
22 |
|
23 |
$field = wp_parse_args( $field, array(
|
24 |
'size' => 30,
|
25 |
+
'maxlength' => false,
|
26 |
'pattern' => false,
|
27 |
'placeholder' => '',
|
28 |
) );
|
meta-box-loader.php
CHANGED
@@ -4,7 +4,7 @@ class RWMB_Loader
|
|
4 |
{
|
5 |
static function load( $url, $dir )
|
6 |
{
|
7 |
-
define( 'RWMB_VER', '4.7' );
|
8 |
|
9 |
define( 'RWMB_URL', $url );
|
10 |
define( 'RWMB_DIR', $dir );
|
4 |
{
|
5 |
static function load( $url, $dir )
|
6 |
{
|
7 |
+
define( 'RWMB_VER', '4.7.1' );
|
8 |
|
9 |
define( 'RWMB_URL', $url );
|
10 |
define( 'RWMB_DIR', $dir );
|
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 for any post type in WordPress.
|
6 |
-
* Version: 4.7
|
7 |
* Author: Rilwis
|
8 |
* Author URI: http://www.deluxeblogtips.com
|
9 |
* License: GPL2+
|
@@ -15,7 +15,7 @@
|
|
15 |
defined( 'ABSPATH' ) || exit;
|
16 |
|
17 |
// Script version, used to add version for scripts and styles
|
18 |
-
define( 'RWMB_VER', '4.7' );
|
19 |
|
20 |
// Define plugin URLs, for fast enqueuing scripts and styles
|
21 |
if ( ! defined( 'RWMB_URL' ) )
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields for any post type in WordPress.
|
6 |
+
* Version: 4.7.1
|
7 |
* Author: Rilwis
|
8 |
* Author URI: http://www.deluxeblogtips.com
|
9 |
* License: GPL2+
|
15 |
defined( 'ABSPATH' ) || exit;
|
16 |
|
17 |
// Script version, used to add version for scripts and styles
|
18 |
+
define( 'RWMB_VER', '4.7.1' );
|
19 |
|
20 |
// Define plugin URLs, for fast enqueuing scripts and styles
|
21 |
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, 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: 3.5
|
6 |
Tested up to: 4.3.1
|
7 |
-
Stable tag: 4.7
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional solution to create custom meta boxes and custom fields for WordPress websites.
|
@@ -75,6 +75,10 @@ To getting started with the plugin API, please read [this tutorial](https://meta
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
|
|
78 |
= 4.7 =
|
79 |
|
80 |
* Improvement: add `attributes` for all input fields (text, number, email, ...) so users can add any custom attributes for them. Also added default attributes `required`, `disabled`, `readonly`, `maxlength` and `pattern` for those fields as well. These attributes will be merged into the `attributes`.
|
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: 3.5
|
6 |
Tested up to: 4.3.1
|
7 |
+
Stable tag: 4.7.1
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional solution to create custom meta boxes and custom fields for WordPress websites.
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 4.7.1 =
|
79 |
+
|
80 |
+
* Fix: remove default `maxlength = 30` for text fields.
|
81 |
+
|
82 |
= 4.7 =
|
83 |
|
84 |
* Improvement: add `attributes` for all input fields (text, number, email, ...) so users can add any custom attributes for them. Also added default attributes `required`, `disabled`, `readonly`, `maxlength` and `pattern` for those fields as well. These attributes will be merged into the `attributes`.
|