Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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