Created
November 17, 2015 08:05
-
-
Save developer-anuragsingh/b6d907a766f7437014b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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