Version Description
- Release date: 2015-09-02
- Fixed a problem with display post parent in post children table after pagination.
- Fixed a problem with display post parent in post children table after sorting.
Download this release
Release Info
| Developer | iworks |
| Plugin | |
| Version | 1.8.5 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.4 to 1.8.5
- embedded/bootstrap.php +1 -1
- embedded/plugin.php +1 -1
- embedded/readme.txt +1 -1
- embedded/resources/js/post-relationship.js +12 -0
- readme.txt +7 -1
- wpcf.php +2 -2
embedded/bootstrap.php
CHANGED
|
@@ -156,7 +156,7 @@ function wpcf_embedded_init() {
|
|
| 156 |
// Define necessary constants if plugin is not present
|
| 157 |
// This ones are skipped if used as embedded code!
|
| 158 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
| 159 |
-
define( 'WPCF_VERSION', '1.8.
|
| 160 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
| 161 |
}
|
| 162 |
|
| 156 |
// Define necessary constants if plugin is not present
|
| 157 |
// This ones are skipped if used as embedded code!
|
| 158 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
| 159 |
+
define( 'WPCF_VERSION', '1.8.5' );
|
| 160 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
| 161 |
}
|
| 162 |
|
embedded/plugin.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
| 6 |
Author: OnTheGoSystems
|
| 7 |
Author URI: http://www.onthegosystems.com
|
| 8 |
-
Version: 1.8.
|
| 9 |
*/
|
| 10 |
/**
|
| 11 |
*
|
| 5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
| 6 |
Author: OnTheGoSystems
|
| 7 |
Author URI: http://www.onthegosystems.com
|
| 8 |
+
Version: 1.8.5
|
| 9 |
*/
|
| 10 |
/**
|
| 11 |
*
|
embedded/readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Tags: CMS, custom field, custom fields, custom post type, custom post types, fie
|
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 3.4
|
| 7 |
Tested up to: 4.3
|
| 8 |
-
Stable tag: 1.8.
|
| 9 |
|
| 10 |
The Embedded version lets you create custom types, taxonomies and fields for your theme or plugin, without requiring any plugin.
|
| 11 |
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 3.4
|
| 7 |
Tested up to: 4.3
|
| 8 |
+
Stable tag: 1.8.5
|
| 9 |
|
| 10 |
The Embedded version lets you create custom types, taxonomies and fields for your theme or plugin, without requiring any plugin.
|
| 11 |
|
embedded/resources/js/post-relationship.js
CHANGED
|
@@ -559,6 +559,10 @@ jQuery(document).ready(function($) {
|
|
| 559 |
$button.next().fadeOut(function() {
|
| 560 |
$(this).remove();
|
| 561 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
| 562 |
}
|
| 563 |
});
|
| 564 |
return false;
|
|
@@ -598,6 +602,10 @@ jQuery(document).ready(function($) {
|
|
| 598 |
$button.next().fadeOut(function() {
|
| 599 |
$(this).remove();
|
| 600 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
| 601 |
}
|
| 602 |
});
|
| 603 |
return false;
|
|
@@ -849,6 +857,10 @@ jQuery(document).ready(function($) {
|
|
| 849 |
wptCond.addConditionals(data.conditionals);
|
| 850 |
}
|
| 851 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 852 |
}
|
| 853 |
});
|
| 854 |
});
|
| 559 |
$button.next().fadeOut(function() {
|
| 560 |
$(this).remove();
|
| 561 |
});
|
| 562 |
+
/**
|
| 563 |
+
* select2
|
| 564 |
+
*/
|
| 565 |
+
wpcfBindSelect2($);
|
| 566 |
}
|
| 567 |
});
|
| 568 |
return false;
|
| 602 |
$button.next().fadeOut(function() {
|
| 603 |
$(this).remove();
|
| 604 |
});
|
| 605 |
+
/**
|
| 606 |
+
* select2
|
| 607 |
+
*/
|
| 608 |
+
wpcfBindSelect2($);
|
| 609 |
}
|
| 610 |
});
|
| 611 |
return false;
|
| 857 |
wptCond.addConditionals(data.conditionals);
|
| 858 |
}
|
| 859 |
}
|
| 860 |
+
/**
|
| 861 |
+
* select2
|
| 862 |
+
*/
|
| 863 |
+
wpcfBindSelect2($);
|
| 864 |
}
|
| 865 |
});
|
| 866 |
});
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Tags: CMS, custom field, custom fields, custom post type, custom post types, fie
|
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 3.4
|
| 7 |
Tested up to: 4.3
|
| 8 |
-
Stable tag: 1.8.
|
| 9 |
|
| 10 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
| 11 |
|
|
@@ -155,6 +155,12 @@ Additionally, Types is the only plugin that lets you define parent/child relatio
|
|
| 155 |
|
| 156 |
== Changelog ==
|
| 157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
= 1.8.4 =
|
| 159 |
|
| 160 |
* Release date: 2015-09-01
|
| 5 |
License: GPLv2
|
| 6 |
Requires at least: 3.4
|
| 7 |
Tested up to: 4.3
|
| 8 |
+
Stable tag: 1.8.5
|
| 9 |
|
| 10 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
| 11 |
|
| 155 |
|
| 156 |
== Changelog ==
|
| 157 |
|
| 158 |
+
= 1.8.5 =
|
| 159 |
+
|
| 160 |
+
* Release date: 2015-09-02
|
| 161 |
+
* Fixed a problem with display post parent in post children table after pagination.
|
| 162 |
+
* Fixed a problem with display post parent in post children table after sorting.
|
| 163 |
+
|
| 164 |
= 1.8.4 =
|
| 165 |
|
| 166 |
* Release date: 2015-09-01
|
wpcf.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
| 6 |
Author: OnTheGoSystems
|
| 7 |
Author URI: http://www.onthegosystems.com
|
| 8 |
-
Version: 1.8.
|
| 9 |
*/
|
| 10 |
/**
|
| 11 |
*
|
|
@@ -16,7 +16,7 @@ if ( !defined( 'WPCF_VERSION' ) ) {
|
|
| 16 |
/**
|
| 17 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
| 18 |
*/
|
| 19 |
-
define( 'WPCF_VERSION', '1.8.
|
| 20 |
}
|
| 21 |
|
| 22 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|
| 5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
| 6 |
Author: OnTheGoSystems
|
| 7 |
Author URI: http://www.onthegosystems.com
|
| 8 |
+
Version: 1.8.5
|
| 9 |
*/
|
| 10 |
/**
|
| 11 |
*
|
| 16 |
/**
|
| 17 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
| 18 |
*/
|
| 19 |
+
define( 'WPCF_VERSION', '1.8.5' );
|
| 20 |
}
|
| 21 |
|
| 22 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|
