Version Description
- Bugfix: tag save.
Download this release
Release Info
Developer | Hiroaki Miyashita |
Plugin | Custom Field Template |
Version | 2.3.4 |
Comparing to | |
See all releases |
Code changes from version 2.3.3 to 2.3.4
- custom-field-template.php +2 -2
- readme.txt +4 -1
custom-field-template.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://wpgogo.com/development/custom-field-template.html
|
|
5 |
Description: This plugin adds the default custom fields on the Write Post/Page.
|
6 |
Author: Hiroaki Miyashita
|
7 |
Author URI: http://wpgogo.com/
|
8 |
-
Version: 2.3.
|
9 |
Text Domain: custom-field-template
|
10 |
Domain Path: /
|
11 |
*/
|
@@ -3043,7 +3043,7 @@ jQuery("#edButtonPreview").trigger("click"); }' . "\n";*/
|
|
3043 |
continue;
|
3044 |
|
3045 |
if ( substr($wp_version, 0, 3) >= '2.8' ) {
|
3046 |
-
if ( !class_exists('SimpleTags') && !empty($_POST['tax_input']['post_tag']) ) {
|
3047 |
$tags_input = explode(",", $_POST['tax_input']['post_tag']);
|
3048 |
}
|
3049 |
} else {
|
5 |
Description: This plugin adds the default custom fields on the Write Post/Page.
|
6 |
Author: Hiroaki Miyashita
|
7 |
Author URI: http://wpgogo.com/
|
8 |
+
Version: 2.3.4
|
9 |
Text Domain: custom-field-template
|
10 |
Domain Path: /
|
11 |
*/
|
3043 |
continue;
|
3044 |
|
3045 |
if ( substr($wp_version, 0, 3) >= '2.8' ) {
|
3046 |
+
if ( !class_exists('SimpleTags') && !empty($_POST['tax_input']['post_tag']) && is_string($_POST['tax_input']['post_tag']) ) {
|
3047 |
$tags_input = explode(",", $_POST['tax_input']['post_tag']);
|
3048 |
}
|
3049 |
} else {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wpgogo.com/development/custom-field-template.html
|
|
4 |
Tags: custom field, custom fields, custom, fields, field, template, meta, custom field template, custom post type
|
5 |
Requires at least: 2.1
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The Custom Field Template plugin extends the functionality of custom fields.
|
@@ -112,6 +112,9 @@ See the default template and modify it.
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= 2.3.3 =
|
116 |
* Bugfix: tinyMCE editor.
|
117 |
|
4 |
Tags: custom field, custom fields, custom, fields, field, template, meta, custom field template, custom post type
|
5 |
Requires at least: 2.1
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 2.3.4
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The Custom Field Template plugin extends the functionality of custom fields.
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= 2.3.4 =
|
116 |
+
* Bugfix: tag save.
|
117 |
+
|
118 |
= 2.3.3 =
|
119 |
* Bugfix: tinyMCE editor.
|
120 |
|