Skip to content

Instantly share code, notes, and snippets.

@gspice
Forked from thomasgriffin/gist:4159035
Last active August 29, 2015 14:24
Show Gist options
  • Save gspice/7d01272b0f3c9dc112f2 to your computer and use it in GitHub Desktop.
Save gspice/7d01272b0f3c9dc112f2 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'pre_get_posts', 'tgm_io_cpt_search' );
/**
* This function modifies the main WordPress query to include an array of
* post types instead of the default 'post' post type.
*
* @param object $query The original query.
* @return object $query The amended query.
*/
function tgm_io_cpt_search( $query ) {
if ( $query->is_search ) {
$query->set( 'post_type', array( 'post', 'movies', 'products', 'portfolio' ) );
}
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment