Reorder Posts - Version 2.2.1

Version Description

  • Released 2015-11-09
  • Fixed pagination issue
Download this release

Release Info

Developer ronalfy
Plugin Icon 128x128 Reorder Posts
Version 2.2.1
Comparing to
See all releases

Code changes from version 2.2.0 to 2.2.1

Files changed (3) hide show
  1. class-reorder.php +1 -1
  2. index.php +1 -1
  3. readme.txt +8 -1
class-reorder.php CHANGED
@@ -394,7 +394,7 @@ final class MN_Reorder {
394
  <?php
395
  //Output non hierarchical posts
396
  $page = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : 0;
397
- if ( $page == 0 || $page = 1 ) {
398
  $offset = 0;
399
  } elseif ( $page > 1 ) {
400
  $offset = $this->offset * ( $page - 1 );
394
  <?php
395
  //Output non hierarchical posts
396
  $page = isset( $_GET[ 'paged' ] ) ? absint( $_GET[ 'paged' ] ) : 0;
397
+ if ( $page == 0 || $page == 1 ) {
398
  $offset = 0;
399
  } elseif ( $page > 1 ) {
400
  $offset = $this->offset * ( $page - 1 );
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Reorder Posts
4
  Plugin URI: https://wordpress.org/plugins/metronet-reorder-posts/
5
  Description: Easily reorder posts and pages in WordPress
6
- Version: 2.2.0
7
  Author: Ryan Hellyer, Ronald Huereca, Scott Basgaard
8
  Author URI: https://github.com/ronalfy/reorder-posts
9
  Text Domain: metronet-reorder-posts
3
  Plugin Name: Reorder Posts
4
  Plugin URI: https://wordpress.org/plugins/metronet-reorder-posts/
5
  Description: Easily reorder posts and pages in WordPress
6
+ Version: 2.2.1
7
  Author: Ryan Hellyer, Ronald Huereca, Scott Basgaard
8
  Author URI: https://github.com/ronalfy/reorder-posts
9
  Text Domain: metronet-reorder-posts
readme.txt CHANGED
@@ -5,7 +5,7 @@ Plugin URL: https://wordpress.org/plugins/metronet-reorder-posts/
5
  Requires at Least: 3.7
6
  Tested up to: 4.4
7
  Tags: reorder, re-order, posts, wordpress, post-type, ajax, admin, hierarchical, menu_order, ordering
8
- Stable tag: 2.2.0
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -123,6 +123,10 @@ No, but there is an add-on for this plugin called <a href="https://wordpress.org
123
 
124
  == Changelog ==
125
 
 
 
 
 
126
  = 2.2.0 =
127
  * Released 2015-11-1
128
  * Loading animation now shows inline
@@ -211,6 +215,9 @@ No, but there is an add-on for this plugin called <a href="https://wordpress.org
211
 
212
  == Upgrade Notice ==
213
 
 
 
 
214
  = 2.2.0 =
215
  Adding loading animation in better context
216
 
5
  Requires at Least: 3.7
6
  Tested up to: 4.4
7
  Tags: reorder, re-order, posts, wordpress, post-type, ajax, admin, hierarchical, menu_order, ordering
8
+ Stable tag: 2.2.1
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
123
 
124
  == Changelog ==
125
 
126
+ = 2.2.1 =
127
+ * Released 2015-11-09
128
+ * Fixed pagination issue
129
+
130
  = 2.2.0 =
131
  * Released 2015-11-1
132
  * Loading animation now shows inline
215
 
216
  == Upgrade Notice ==
217
 
218
+ = 2.2.1 =
219
+ Fixing pagination issue.
220
+
221
  = 2.2.0 =
222
  Adding loading animation in better context
223