Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function remove_pages_from_search($query) {
  2. if ($query->is_search) {
  3. $query->set('post_type', 'post');
  4. }
  5. return $query;
  6. }
  7. add_filter('pre_get_posts','remove_pages_from_search');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement