Simple Custom Post Order - Version 2.5.3

Version Description

Download this release

Release Info

Developer giucu91
Plugin Icon wp plugin Simple Custom Post Order
Version 2.5.3
Comparing to
See all releases

Code changes from version 2.5.2 to 2.5.3

assets/scporder.js CHANGED
@@ -57,7 +57,7 @@
57
 
58
  var y = 0;
59
 
60
- // check if there are no items in the table
61
  if(jQuery('#the-list > tr.no-items').length == 0){
62
  jQuery('#the-list').parent().find('thead').find('th').each(function () {
63
 
57
 
58
  var y = 0;
59
 
60
+ // check if there are items in the table
61
  if(jQuery('#the-list > tr.no-items').length == 0){
62
  jQuery('#the-list').parent().find('thead').find('th').each(function () {
63
 
assets/taxonomy_order.js CHANGED
@@ -1,4 +1,4 @@
1
- jQuery( document ).ready( function( $ )
2
  {
3
  // if it is taxonomy page
4
  if( adminpage == 'edit-tags-php' )
1
+ jQuery(function( $ )
2
  {
3
  // if it is taxonomy page
4
  if( adminpage == 'edit-tags-php' )
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: silkalns
3
  Tags: custom post order, post order, js post order, page order, posts order, category order, sort posts, sort pages, sort custom posts
4
  Requires at least: 4.6
5
  Requires PHP: 5.6
6
- Tested up to: 5.5
7
- Stable tag: 2.5.2
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -36,6 +36,9 @@ An answer to that question.
36
 
37
  == Changelog ==
38
 
 
 
 
39
  = Version 2.5.2 =
40
  * Modified deprecated JQuery function to improve compatibility with Wordpress 5.5
41
  * Fixed an issue where posts would be in reverse order after resetting the order
3
  Tags: custom post order, post order, js post order, page order, posts order, category order, sort posts, sort pages, sort custom posts
4
  Requires at least: 4.6
5
  Requires PHP: 5.6
6
+ Tested up to: 5.6
7
+ Stable tag: 2.5.3
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
36
 
37
  == Changelog ==
38
 
39
+ = Version 2.5.3 =
40
+ * Modified deprecated jQuery functions.
41
+
42
  = Version 2.5.2 =
43
  * Modified deprecated JQuery function to improve compatibility with Wordpress 5.5
44
  * Fixed an issue where posts would be in reverse order after resetting the order
simple-custom-post-order.php CHANGED
@@ -3,10 +3,10 @@
3
  * Plugin Name: Simple Custom Post Order
4
  * Plugin URI: https://wordpress.org/plugins-wp/simple-custom-post-order/
5
  * Description: Order Items (Posts, Pages, and Custom Post Types) using a Drag and Drop Sortable JavaScript.
6
- * Version: 2.5.2
7
  * Author: Colorlib
8
  * Author URI: https://colorlib.com/
9
- * Tested up to: 5.5
10
  * Requires: 4.6 or higher
11
  * License: GPLv3 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -36,7 +36,7 @@
36
 
37
  define('SCPORDER_URL', plugins_url('', __FILE__));
38
  define('SCPORDER_DIR', plugin_dir_path(__FILE__));
39
- define('SCPORDER_VERSION', '2.5.2');
40
 
41
  $scporder = new SCPO_Engine();
42
 
3
  * Plugin Name: Simple Custom Post Order
4
  * Plugin URI: https://wordpress.org/plugins-wp/simple-custom-post-order/
5
  * Description: Order Items (Posts, Pages, and Custom Post Types) using a Drag and Drop Sortable JavaScript.
6
+ * Version: 2.5.3
7
  * Author: Colorlib
8
  * Author URI: https://colorlib.com/
9
+ * Tested up to: 5.6
10
  * Requires: 4.6 or higher
11
  * License: GPLv3 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-3.0.html
36
 
37
  define('SCPORDER_URL', plugins_url('', __FILE__));
38
  define('SCPORDER_DIR', plugin_dir_path(__FILE__));
39
+ define('SCPORDER_VERSION', '2.5.3');
40
 
41
  $scporder = new SCPO_Engine();
42