View Single Post
Old 06-05-2008, 06:23 PM  
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,392
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
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote