Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function custom_search_orderby( $query ) {
- if ( $query->is_search() && $query->is_main_query() && ! is_admin() ) {
- $query->set( 'orderby', 'date' );
- $query->set( 'order', 'DESC' );
- }
- }
- add_action( 'pre_get_posts', 'custom_search_orderby' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement