Intuitive Custom Post Order - Version 3.1.2

Version Description

  • Solved the problem of layout collapse during drag and drop sorting.
Download this release

Release Info

Developer hijiri
Plugin Icon 128x128 Intuitive Custom Post Order
Version 3.1.2
Comparing to
See all releases

Code changes from version 3.1.1 to 3.1.2

Files changed (4) hide show
  1. README.md +2 -2
  2. css/hicpo.css +3 -0
  3. intuitive-custom-post-order.php +2 -2
  4. readme.txt +8 -4
README.md CHANGED
@@ -6,7 +6,7 @@
6
 
7
  Intuitively, order items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a drag and drop sortable JavaScript.
8
 
9
- Select sortable items from 'Intuitive CPT' menu of Setting menu in WordPress.
10
 
11
  In addition, You can re-override the parameters of `orderby` and `order`, by using the `WP_Query` or `pre_get_posts` or `query_posts()` or `get_posts()`.<br>
12
  ATTENTION: Only if you use `get_posts()` to re-overwrite to the default order( `orderby=date, order=DESC` ), You need to use own custom parameter `orderby=default_date`.
@@ -15,7 +15,7 @@ ATTENTION: Only if you use `get_posts()` to re-overwrite to the default order( `
15
 
16
  1. Upload 'intuitive-custom-post-order' folder to the `/wp-content/plugins/` directory.
17
  2. Activate the plugin through the 'Plugins' menu in WordPress.
18
- 3. Select sortable items from 'Intuitive CPT' menu of Setting menu in WordPress.
19
 
20
  ## Documentation
21
 
6
 
7
  Intuitively, order items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a drag and drop sortable JavaScript.
8
 
9
+ Select sortable items from 'Intuitive CPO' menu of Setting menu in WordPress.
10
 
11
  In addition, You can re-override the parameters of `orderby` and `order`, by using the `WP_Query` or `pre_get_posts` or `query_posts()` or `get_posts()`.<br>
12
  ATTENTION: Only if you use `get_posts()` to re-overwrite to the default order( `orderby=date, order=DESC` ), You need to use own custom parameter `orderby=default_date`.
15
 
16
  1. Upload 'intuitive-custom-post-order' folder to the `/wp-content/plugins/` directory.
17
  2. Activate the plugin through the 'Plugins' menu in WordPress.
18
+ 3. Select sortable items from 'Intuitive CPO' menu of Setting menu in WordPress.
19
 
20
  ## Documentation
21
 
css/hicpo.css CHANGED
@@ -8,3 +8,6 @@
8
  background-color: #F9F9F9;
9
  border-top: 1px solid #DFDFDF;
10
  }
 
 
 
8
  background-color: #F9F9F9;
9
  border-top: 1px solid #DFDFDF;
10
  }
11
+ .ui-sortable-placeholder {
12
+ display: none;
13
+ }
intuitive-custom-post-order.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Intuitive Custom Post Order
4
  * Plugin URI: http://hijiriworld.com/web/plugins/intuitive-custom-post-order/
5
  * Description: Intuitively, Order Items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a Drag and Drop Sortable JavaScript.
6
- * Version: 3.1.1
7
  * Author: hijiri
8
  * Author URI: http://hijiriworld.com/web/
9
  * Text Domain: intuitive-custom-post-order
@@ -18,7 +18,7 @@
18
 
19
  define( 'HICPO_URL', plugins_url( '', __FILE__ ) );
20
  define( 'HICPO_DIR', plugin_dir_path( __FILE__ ) );
21
- define( 'HICPO_VER', '3.1.1' );
22
 
23
  /**
24
  * Uninstall hook
3
  * Plugin Name: Intuitive Custom Post Order
4
  * Plugin URI: http://hijiriworld.com/web/plugins/intuitive-custom-post-order/
5
  * Description: Intuitively, Order Items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a Drag and Drop Sortable JavaScript.
6
+ * Version: 3.1.2
7
  * Author: hijiri
8
  * Author URI: http://hijiriworld.com/web/
9
  * Text Domain: intuitive-custom-post-order
18
 
19
  define( 'HICPO_URL', plugins_url( '', __FILE__ ) );
20
  define( 'HICPO_DIR', plugin_dir_path( __FILE__ ) );
21
+ define( 'HICPO_VER', '3.1.2' );
22
 
23
  /**
24
  * Uninstall hook
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: hijiri
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TT5NP352P6MCU
4
  Tags: post order, posts order, order post, order posts, custom post type order, custom taxonomy order
5
  Requires at least: 3.5.0
6
- Tested up to: 4.9.2
7
- Stable tag: 3.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -14,7 +14,7 @@ Intuitively, order items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, S
14
 
15
  Intuitively, order items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a drag and drop sortable JavaScript.
16
 
17
- Select sortable items from 'Intuitive CPT' menu of Setting menu in WordPress.
18
 
19
  In addition, You can re-override the parameters of 'orderby' and 'order', by using the 'WP_Query' or 'pre_get_posts' or 'query_posts()' or 'get_posts()'.<br>
20
  ATTENTION: Only if you use 'get_posts()' to re-overwrite to the default order( orderby=date, order=DESC ), You need to use own custom parameter 'orderby=default_date'.
@@ -25,7 +25,7 @@ This Plugin published on <a href="https://github.com/hijiriworld/intuitive-custo
25
 
26
  1. Upload 'intuitive-custom-post-order' folder to the `/wp-content/plugins/` directory.
27
  2. Activate the plugin through the 'Plugins' menu in WordPress.
28
- 3. Select sortable items from 'Intuitive CPT' menu of Setting menu in WordPress.
29
 
30
  == Screenshots ==
31
 
@@ -101,6 +101,10 @@ Go to "screen options" and change "Number of items per page:".
101
 
102
  == Changelog ==
103
 
 
 
 
 
104
  = 3.1.1 =
105
 
106
  * Remove deprecated function 'secreen_icon()'.
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TT5NP352P6MCU
4
  Tags: post order, posts order, order post, order posts, custom post type order, custom taxonomy order
5
  Requires at least: 3.5.0
6
+ Tested up to: 5.1.0
7
+ Stable tag: 3.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
14
 
15
  Intuitively, order items( Posts, Pages, ,Custom Post Types, Custom Taxonomies, Sites ) using a drag and drop sortable JavaScript.
16
 
17
+ Select sortable items from 'Intuitive CPO' menu of Setting menu in WordPress.
18
 
19
  In addition, You can re-override the parameters of 'orderby' and 'order', by using the 'WP_Query' or 'pre_get_posts' or 'query_posts()' or 'get_posts()'.<br>
20
  ATTENTION: Only if you use 'get_posts()' to re-overwrite to the default order( orderby=date, order=DESC ), You need to use own custom parameter 'orderby=default_date'.
25
 
26
  1. Upload 'intuitive-custom-post-order' folder to the `/wp-content/plugins/` directory.
27
  2. Activate the plugin through the 'Plugins' menu in WordPress.
28
+ 3. Select sortable items from 'Intuitive CPO' menu of Setting menu in WordPress.
29
 
30
  == Screenshots ==
31
 
101
 
102
  == Changelog ==
103
 
104
+ = 3.1.2 =
105
+
106
+ * Solved the problem of layout collapse during drag and drop sorting.
107
+
108
  = 3.1.1 =
109
 
110
  * Remove deprecated function 'secreen_icon()'.