Do functions.php přidáme
/—code php
add_filter( ‚pre_get_posts‘, ‚tgm_cpt_search‘ );
/**
* This function modifies the main WordPress query to include an array of post types instead of the default ‚post‘ post type.
*
* @param mixed $query The original query
* @return $query The amended query
*/
function tgm_cpt_search( $query ) {
if ( $query->is_search )
$query->set( ‚post_type‘, array( ‚post‘, ‚movies‘, ‚products‘, ‚portfolio‘ ) );
return $query;
};
\—