Advertisement
GochiSiyan

search sort order

Jun 13th, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function changeSearchSort( $orderby, $query ){
  2. global $wpdb;
  3.  
  4. if(is_search()) {
  5. $orderby = $wpdb->prefix."posts.post_date DESC";
  6. }
  7. return $orderby;
  8. }
  9. add_filter('posts_orderby','changeSearchSort',10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement