【WordPress】個別記事のテンプレートをカテゴリ別に分けたい

single.phpの内容を下記のように書き換えます。

<?php
if ( in_category('salon') ) {
  include(TEMPLATEPATH . '/single-salon.php');
} else if ( in_category('staff') ) {
  include(TEMPLATEPATH . '/single-staff.php');
} else {
  include(TEMPLATEPATH . '/single-default.php');
}
?>