hocam kategoriye göre özel olarak single.php gösterte bilirsin örneğin;
single.php ni single-normal.php olarak değiştir sonra yeni bir single.php oluştur içine
<?php
$post = $wp_query->post;
if (in_category('25')) { // post 25id li kategorideyse
include(TEMPLATEPATH.'/single2.php');
}else {
include(TEMPLATEPATH.'/single-normal.php');
}
?>bu şekilde olması lazım