#24133 closed defect (bug) (duplicate)
WP_Query, multiple 'orderby' values glitch
Reported by: | racura | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.5.1 |
Component: | Query | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
According to the documentation, WP_Query argument 'orderby' allows for multiple values, but it doesn't work.
Looking in the code i found out why, the 'order' is only being applied to the last item in the list.
So for instance:
('orderby' => 'title menu_order', 'order' => 'DESC')
Will end up as
"ORDER BY $wpdb->posts.menu_order, $wpdb->posts.post_menu_order DESC"
To fix (I hope), the following needs to be done to query.php line 2387
$orderby_array[] = $orderby.' '.$q['order'];
Change History (5)
Note: See
TracTickets for help on using
tickets.
Sorry, the code fix should be:
And remove lines 2393 and 2394