Trying to create multiple, single custom templates, for a custom post type, based on the custom port type's custom taxonomy.
For example: when a post has a certain category, it will use a different template, rather than the default single-custom-post-type-name.php
This is what I have tried so far. But it does not seem to be working. And I assuming it is because I am trying this on a CPT.
add_filter('single_template', create_function(
'$the_template',
'foreach( (array) get_the_category() as $cat ) {
if ( file_exists(TEMPLATEPATH . "/single-{$cat->slug}.php") )
return TEMPLATEPATH . "/single-{$cat->slug}.php"; }
return $the_template;' )
);
exaple loop in the myposttype-single.php (slug of your posttype) file:
if the first categoryname of that post will be "yourcategoryname" it will take the special template and not the default one.