Skip to content

Instantly share code, notes, and snippets.

@Viper007Bond
Created February 24, 2012 19:27
Show Gist options
  • Save Viper007Bond/1903147 to your computer and use it in GitHub Desktop.
Save Viper007Bond/1903147 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