single.phpを下記に書き換える
<?php
$post = $wp_query->post;
if ( in_category('classic') ) {
include(TEMPLATEPATH.'/single_classic.php');
} elseif ( in_category('kyoretsu') ) {
include(TEMPLATEPATH.'/single_kyoretsu.php');
} else {
include(TEMPLATEPATH.'/single_normal.php');
}
?>