Skip to content

Instantly share code, notes, and snippets.

@nacin
Created June 7, 2012 14:20
Show Gist options
  • Save nacin/2889055 to your computer and use it in GitHub Desktop.
Save nacin/2889055 to your computer and use it in GitHub Desktop.
<?php
function jquery_posts_only_for_searches( $query ) {
if ( $query->is_main_query() && $query->is_search() )
$query->set( 'post_type', 'post' );
}
add_action( 'pre_get_posts', 'jquery_posts_only_for_searches' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment