カテゴリーごとにsingle.phpを分ける

2010.10.25

single.phpに以下を記載する。

<?php
$post = $wp_query- >post;
if ( in_category(‘1‘) ) {
include(TEMPLATEPATH . ‘/single1.php‘);
} elseif ( in_category(‘organic‘) ) {
include(TEMPLATEPATH . ‘/single2.php‘);
} else {
include(TEMPLATEPATH . ‘/single3.php‘);
}
? >

あとは個別に『single1.php』などを用意する。

コメントは受け付けていません。