Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Customowa wyszukiwarka
  2. function ws_change_search($query) {
  3.  
  4. if (!is_page()) {
  5. if ( $query->is_search && is_main_query() ) {
  6. $query->set( 'post_type', 'post' );
  7. }
  8. return $query;
  9.  
  10. }
  11. }
  12. add_filter( 'pre_get_posts','ws_change_search' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement