Skip to content

Instantly share code, notes, and snippets.

@jplhomer
Created March 19, 2017 21:19
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 jplhomer/05a6033e544c16cf335f2b163ff33069 to your computer and use it in GitHub Desktop.
Save jplhomer/05a6033e544c16cf335f2b163ff33069 to your computer and use it in GitHub Desktop.
Set a custom taxonomy for Taghound Media Tagger
<?php
// Your theme's functions.php file...
function custom_tag_taxonomy( $slug ) {
return 'YOUR_CUSTOM_SLUG';
}
add_filter( 'tmt_tag_taxonomy', 'custom_tag_taxonomy', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment