Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created March 18, 2015 13:56
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 jchristopher/c7a5ddb08a4a85da6a32 to your computer and use it in GitHub Desktop.
Save jchristopher/c7a5ddb08a4a85da6a32 to your computer and use it in GitHub Desktop.
Customize which taxonomies are indexed by SearchWP
<?php
function my_searchwp_indexer_taxonomies( $taxonomies, $post_being_indexed ) {
// TODO: customize which taxonomies are indexed
return $taxonomies;
}
add_filter( 'searchwp_indexer_taxonomies', 'my_searchwp_indexer_taxonomies', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment