Is it possible to have multiple categories in one statement?
Something like:
<?php
if (is_category('18, 19, 20'))
{
include(TEMPLATEPATH . '/blog.php');
}
elseif (is_category('27, 28, 29'))
{
include(TEMPLATEPATH . '/pagelinks.php');
}
else { ?>
Thank you.