Post Types Order - Version 1.9.5.6

Version Description

  • Fix PHP implode() notice
Download this release

Release Info

Developer nsp-code
Plugin Icon 128x128 Post Types Order
Version 1.9.5.6
Comparing to
See all releases

Code changes from version 1.9.5.5 to 1.9.5.6

include/class.cpto.php CHANGED
@@ -269,8 +269,8 @@
269
  return;
270
 
271
  //not for hierarhical
272
- if ( is_post_type_hierarchical( $screen->post_type ) )
273
- return;
274
 
275
  //if is taxonomy term filter return
276
  if(is_category() || is_tax())
269
  return;
270
 
271
  //not for hierarhical
272
+ //if ( is_post_type_hierarchical( $screen->post_type ) )
273
+ //return;
274
 
275
  //if is taxonomy term filter return
276
  if(is_category() || is_tax())
include/class.options.php CHANGED
@@ -87,10 +87,10 @@
87
  'status'
88
  );
89
 
90
- if(in_array($post_type_name, $ignore_post_types))
91
  continue;
92
 
93
- if(is_post_type_hierarchical($post_type_name))
94
  continue;
95
 
96
  $post_type_data = get_post_type_object( $post_type_name );
87
  'status'
88
  );
89
 
90
+ if( in_array($post_type_name, $ignore_post_types) )
91
  continue;
92
 
93
+ if( is_post_type_hierarchical($post_type_name) )
94
  continue;
95
 
96
  $post_type_data = get_post_type_object( $post_type_name );
post-types-order.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.nsp-code.com
5
  Description: Posts Order and Post Types Objects Order using a Drag and Drop Sortable javascript capability
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
- Version: 1.9.5.5
9
  Text Domain: post-types-order
10
  Domain Path: /languages/
11
  */
5
  Description: Posts Order and Post Types Objects Order using a Drag and Drop Sortable javascript capability
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
+ Version: 1.9.5.6
9
  Text Domain: post-types-order
10
  Domain Path: /languages/
11
  */
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: nsp-code, tdgu
3
  Donate link: http://www.nsp-code.com/donate.php
4
  Tags: post order, posts order, sort, post sort, posts sort, post type order, custom order, admin posts order
5
  Requires at least: 2.8
6
- Tested up to: 5.6.2
7
- Stable tag: 1.9.5.5
8
 
9
  Post Order and custom Post Type Objects (custom post types) using a Drag and Drop Sortable JavaScript AJAX interface or default WordPress dashboard.
10
 
@@ -94,6 +94,9 @@ Consider upgrading to our advanced version of this plugin at a very resonable pr
94
 
95
  == Change Log ==
96
 
 
 
 
97
  = 1.9.5.5 =
98
  - Fix PHP implode() notice
99
 
3
  Donate link: http://www.nsp-code.com/donate.php
4
  Tags: post order, posts order, sort, post sort, posts sort, post type order, custom order, admin posts order
5
  Requires at least: 2.8
6
+ Tested up to: 5.7
7
+ Stable tag: 1.9.5.6
8
 
9
  Post Order and custom Post Type Objects (custom post types) using a Drag and Drop Sortable JavaScript AJAX interface or default WordPress dashboard.
10
 
94
 
95
  == Change Log ==
96
 
97
+ = 1.9.5.6 =
98
+ - Fix PHP implode() notice
99
+
100
  = 1.9.5.5 =
101
  - Fix PHP implode() notice
102