Adding a custom post type taxonomy template in plugin

Adding a custom post type taxonomy template in plugin



add_filter('template_include', 'taxonomy_template');
function taxonomy_template( $template ){
if( is_tax('accommodation-categories')){
    $template = BASE_DIR .'/templates/taxonomy-accommodation-categories.php';
}  
return $template

} 

Adding a custom post type taxonomy template in plugin Adding a custom post type taxonomy template in plugin Reviewed by Md Shahinur Islam on July 18, 2022 Rating: 5

No comments:

Powered by Blogger.