View Single Post
Old 06-06-2008, 06:58 AM  
MetaMan
I AM WEB 2.0
 
Industry Role:
Join Date: Jan 2003
Posts: 28,682
Quote:
Originally Posted by cyberxxx View Post
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.
something along the lines of this worked, thanks for the help! AMAZING
MetaMan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote