Advertisement
sierre

Show Posts Only on Search Result

Sep 22nd, 2024
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 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. }
Tags: wordpress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement