Hi all,
I'm new to Thematic, but so far doing okay at making a static site (http://www.buunnicoffee.com/) into a Wordpress site: http://buunnicoffee.com/testing2/
I have two different headers, one for the home page (header-home.php) and one for the subpages (header.php). I successfully implemented this, and it's actually working as I want it to (yay!) but I took out a bit of code from the header file and I don't know if it will mess me up later.
Basically, I couldn't understand how/where to add my desired html (not just images, but live text too) into my new header-home.php file in my child theme. I didn't know how to differentiate the two headers in the functions file, if necessary. Anyway, so I just thought, let me just add my html and see what happens - and it worked!
BUT - I took out the following from my new header file:
<div id="header">
<?php
// action hook creating the theme header
thematic_header();
?>
</div>
And put in:
<div id="header2">
all my html code
</div>
As I said, it's working fine - but is taking out that bit of php going to cause me a problem later?
I didn't want it to get the other header, but maybe there's something that should go in the functions.php file for this template page where the second header is called?
Any insight would be greatly appreciated!