Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save developer-anuragsingh/b6d907a766f7437014b4 to your computer and use it in GitHub Desktop.

Select an option

Save developer-anuragsingh/b6d907a766f7437014b4 to your computer and use it in GitHub Desktop.
// Override the default WP template system
add_filter('template_include', 'taxonomy_template');
function taxonomy_template( $template ){
if( is_tax('YOUR_TAXONOMY_NAME')){
$template = plugin_dir_path( __FILE__ ) .'/templates/taxonomy-YOUR_TAXONOMY_NAME.php';
}
return $template;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment