DaemonHK

Untitled

Feb 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function add_cpt_search( $query ) {
  2.  
  3.     if ( !is_admin() && $query->is_main_query() ) {
  4.         if ($query->is_search) {
  5.             $query->set( 'post_type', array('post', 'equipment', 'news', 'portfolio' ) );
  6.         }
  7.     }
  8.  
  9.     return $query;
  10.  
  11. }
  12. add_filter('pre_get_posts', 'add_cpt_search');
Advertisement
Add Comment
Please, Sign In to add comment