Skip to content

Instantly share code, notes, and snippets.

@seancojr
Forked from Viper007Bond/gist:1903147
Created April 21, 2012 22:03
Show Gist options
  • Save seancojr/2439902 to your computer and use it in GitHub Desktop.
Save seancojr/2439902 to your computer and use it in GitHub Desktop.
Modify post_types searched
<?php
add_action( 'pre_get_posts', 'localtv_posts_and_pages_for_search' );
function localtv_posts_and_pages_for_search( $query ) {
if ( $query->is_main_query() && $query->is_search() )
$query->set( 'post_type', array( 'post', 'page' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment