Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@qhoxie
Created April 30, 2013 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qhoxie/47e39f8db6b6fa2b7d7c to your computer and use it in GitHub Desktop.
Save qhoxie/47e39f8db6b6fa2b7d7c to your computer and use it in GitHub Desktop.
<?php
function swiftype_search_params_filter( $params ) {
// set the types to allow
$params['filters[posts][object_type]'] = array( 'post' );
return $params;
}
add_filter( 'swiftype_search_params', 'swiftype_search_params_filter', 8, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment