sdobwm

Untitled

Oct 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. if (!is_admin()) {
  2. function wpb_search_filter($query) {
  3. if ($query->is_search) {
  4. $query->set('post_type', 'post');
  5. }
  6. return $query;
  7. }
  8. add_filter('pre_get_posts','wpb_search_filter');
  9. }
Add Comment
Please, Sign In to add comment