Page Specific Header Images
-
Im trying to load a different header for different pages.
My header is actually placed lower down the page in my index.php file, not sure if this makes a difference code wise.<?php get_header(); ?>
<div id=”mainContent”>
<div class=”contentBanner”> <?php if (is_page(‘home’) ) {
$hdrimg = ‘home.jpg’;} elseif ( is_page(‘store’) ) {
$hdrimg = ‘store.jpg’;} elseif ( is_page(‘about’) ) {
$hdrimg = ‘about.jpg’;} elseif ( is_page(‘gallery’) ) {
$hdrimg = ‘gallery.jpg’;} elseif ( is_page(‘hidden’) ) {
$hdrimg = ‘hidden.jpg’;} ?></div>Thanks
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Page Specific Header Images’ is closed to new replies.