single.phpをコピーしてsingle-news.php、single-event.php、single-default.phpを作成。
news、event、default部分は好きな名前に変更。
<?php /* Template Name: single */ if ( in_category('news') ) { include(TEMPLATEPATH . '/single-news.php');//ニュースの記事にはsingle-news.php } else if ( in_category('event') ) { include(TEMPLATEPATH . '/single-event.php');//イベントの記事にはsingle-event.php }else { include(TEMPLATEPATH . '/single-default.php');//それ以外の記事にはsingle-default.php } ?>