Changeset 1084755
- Timestamp:
- 02/08/2015 01:59:29 AM (11 years ago)
- Location:
- simple-page-ordering/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
simple-page-ordering.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-page-ordering/trunk/readme.txt
r997790 r1084755 4 4 Tags: order, re-order, ordering, pages, page, manage, menu_order, hierarchical, ajax, drag-and-drop, admin 5 5 Requires at least: 3.8 6 Tested up to: 4. 07 Stable tag: 2.2. 36 Tested up to: 4.1 7 Stable tag: 2.2.4 8 8 9 9 Order your pages and other hierarchical post types with simple drag and drop right from the standard page list. … … 77 77 78 78 == Changelog == 79 80 = 2.2.4 = 81 * Fixed redundant URL encoding when sorting in admin page list 79 82 80 83 = 2.2.3 = -
simple-page-ordering/trunk/simple-page-ordering.php
r997790 r1084755 4 4 Plugin URI: http://10up.com/plugins/simple-page-ordering-wordpress/ 5 5 Description: Order your pages and hierarchical post types using drag and drop on the built in page list. For further instructions, open the "Help" tab on the Pages screen. 6 Version: 2.2. 36 Version: 2.2.4 7 7 Author: Jake Goldman, 10up 8 8 Author URI: http://10up.com … … 284 284 $query_string = esc_url( remove_query_arg( array( 'orderby', 'order' ) ) ); 285 285 if ( ! is_post_type_hierarchical( get_post_type() ) ) { 286 $query_string = add_query_arg( 'orderby', urlencode( 'menu_order title' ), $query_string );286 $query_string = add_query_arg( 'orderby', 'menu_order title', $query_string ); 287 287 $query_string = add_query_arg( 'order', 'asc', $query_string ); 288 288 }
Note: See TracChangeset
for help on using the changeset viewer.