I'm assuming that I have to change 'template', 'stylesheet', and 'specialTemplate' right? To what should I suppose to do that? You know, I'm quite a newbie on PHP subject.
However, I do found this single script that works. I got it from http://www.cameraontheroad.com/?p=623 and the script looked like:
<?php
$post = $wp_query->post;
if ( in_category('9') ) {
include(TEMPLATEPATH . '/single9.php');
elseif ( in_category('12') ) {
include(TEMPLATEPATH . '/single12.php');
elseif ( in_category('42') ) {
include(TEMPLATEPATH . '/single42.php');
} else {
include(TEMPLATEPATH . '/single1.php');
}
?>
The problem is, I kept getting this error:
Parse error: parse error, unexpected $ in /home/starnews/public_html/coba/wp-content/themes/starnews/single.php on line 14
Can anyone help out here?