Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Include Custom Post Types in Search Results
- // functions.php
- // title ans archive search
- function filter_search($query) {
- if ($query->is_search) {
- $query->set('post_type', array('post', 'movies')); // include here your all custom post type
- };
- return $query;
- };
- add_filter('pre_get_posts', 'filter_search');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement