infoscigeek
5/8/2017 - 8:31 PM

Category dependent post templates.

Category dependent post templates.

<?php
//by https://stanhub.com/about-stan-kostadinov/
//works as expected
function get_custom_cat_template($single_template) {
     global $post;
 
       if ( in_category( 'category-name' )) {
          $single_template = dirname( __FILE__ ) . '/single-template.php';
     }
     return $single_template;
}
 
add_filter( "single_template", "get_custom_cat_template" ) ;
?>