I want different left, inner left, right and inner right sidebars on different pages.
I'm using a custom home page template called 'Landing' which diverts on clicking the menu to the page selected in the menu -
Quote:
ATAHUALPA different headers on different pages Make a page template FROM INDEX.PHP - landing php FROM THE TOP, REPLACE THIS --------------------------------------------- <?php /* get all options: */ include (TEMPLATEPATH . '/functions/bfa_get_options.php'); get_header(); ?> WITH THIS - (alter to suit)--------------------------------------------- <?php /* Template Name: Landing */ ?> <?php /* get all options: */ include (TEMPLATEPATH . '/functions/bfa_get_options.php'); if (is_page('support')) {include(TEMPLATEPATH . '/support.php');} elseif(is_page('home')) {include(TEMPLATEPATH . '/header_front.php');} elseif(is_page('blog')) {include(TEMPLATEPATH . '/blog_header.php');} elseif(is_page('contact')) {include(TEMPLATEPATH . '/contact_header.php');} else {include (TEMPLATEPATH . '/header.php');} ?> |
Quote:
REPLACE THIS ( ABOUT LINE 43) ---------------------------------- <!-- Header --> <td id="header" colspan="<?php echo $bfa_ata['cols']; ?>"> <?php bfa_header_config($bfa_ata['configure_header']); ?> </td> <!-- / Header --> |
Website is http://allaboutweb.com.au/