Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_action( 'pre_get_posts', function( $query ) {
  2. if ( ! $query->is_main_query() || ! $query->is_search() )
  3. return;
  4.  
  5. $query->set( 's', $query->get( 's' ) . sprintf( ' %s %s', $_GET['s1'], $_GET['s2'] ) );
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement