|
If there is no page template and no appropriate section the main template, you can always do a simple check to determine is it a page or anything else. E.g.:
<?php
if (is_page()) {
include (TEMPLATEPATH . '/header2.php');
} else {
include (TEMPLATEPATH . '/header1.php');
}
?>
?>
Or something like that.
__________________
Obey the Cowgod
|