Advertisement
firoze

Include Custom Post Types in Search Results

Jun 26th, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Include Custom Post Types in Search Results
  2.  
  3. // functions.php
  4. // title ans archive search
  5. function filter_search($query) {
  6. if ($query->is_search) {
  7. $query->set('post_type', array('post', 'movies')); // include here your all custom post type
  8. };
  9. return $query;
  10. };
  11. add_filter('pre_get_posts', 'filter_search');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement