Quote:
Originally Posted by cyberxxx
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
