Adding a custom post type taxonomy template in pluginadd_filter('template_include', 'taxonomy_template'); function taxonomy_template( $template ){ if( is_tax('accommodation-categories')){ $template = BASE_DIR .'/templates/taxonomy-accommodation-categories.php'; } return $template; }
No comments: