Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function add_cpt_search( $query ) {
- if ( !is_admin() && $query->is_main_query() ) {
- if ($query->is_search) {
- $query->set( 'post_type', array('post', 'equipment', 'news', 'portfolio' ) );
- }
- }
- return $query;
- }
- add_filter('pre_get_posts', 'add_cpt_search');
Advertisement
Add Comment
Please, Sign In to add comment