How can i ADD different header on each page on wordpress?
ADD different header on each page on wordpress?
ansokclifford
10:45 am on Dec 21, 2011 (gmt 0)
I just wondering if i can put different header on each page?
This is my sample site and i'm using a plugin Header Slideshow SampleSites/
is it possible?
your response would help resolve my problem
Thanks in advance :)
rocknbil
4:33 pm on Dec 21, 2011 (gmt 0)
$someheader = 'this-page-header'; // Or some logic that sets $someheader based on the page
get_header($someheader);
A less graceful way to go about it (as far as programming) - but would give you more control from the admin interface - is to create a custom field that sets what header to use. If you don't set it, it uses the default header.
So let's say in custom fields you create a field 'custom-header' and set the value 'third-page'. Wordpress looks for files that begin with 'header', so this would turn into 'header-third-page'.