Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 24, 2019 17:47
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/5f62724ab11646adecd50e962b24c719 to your computer and use it in GitHub Desktop.
Save jchristopher/5f62724ab11646adecd50e962b24c719 to your computer and use it in GitHub Desktop.
Customize whether SearchWP thinks a taxonomy is in use
<?php
add_filter( 'searchwp_is_used_taxonomy', function( $used, $taxonomy ) {
// TODO: Determine whether the taxonomy is in use.
return $used; // true/false
}, 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment