Skip to content

Instantly share code, notes, and snippets.

@jonschr
Created September 10, 2019 16:27
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 jonschr/e15c898cbc1780254b88d3b9bba8d008 to your computer and use it in GitHub Desktop.
Save jonschr/e15c898cbc1780254b88d3b9bba8d008 to your computer and use it in GitHub Desktop.
// Add 'yst_prominent_words to the array of excluded taxonomies
function modify_categories_dropdown( $taxonomies ) {
$taxonomies[] = 'yst_prominent_words';
return $taxonomies;
}
add_filter( 'beautiful_filters_taxonomies', 'modify_categories_dropdown', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment