Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS I need a genius or wizard, Anyone? Re: I need a genius or wizard, Anyone?

#102020
Jon_N
Participant

@TheDoc Here it is

$post = $wp_query->post;
if ( in_category('8') ) {
include(STYLESHEETPATH . '/single-salesProfile.php');

}
else if ( in_category('20') ) {
include(STYLESHEETPATH . '/single-blog.php');
}
else if ( in_category('7') ) {
include(STYLESHEETPATH . '/single-specials.php');
}

else {
include(STYLESHEETPATH . '/single-main.php');
}
?>