i would like to insert a couple extra divs inside hybrid_header() only on the frontpage.
whats the recommended way to do this?
A) make the custom page template (frontpage.php) call a different header.php ?
B) I include a conditional statement ( is_front_page() ) inside header.php so that it calls a different/custom hybrid_header() ?
C) hand code the extra stuff in frontpage.php, but isnt this a bit sloppy ?
D) is it possible to create an alternate hybrid_header(), that only gets sent to the browser when is_front_page(), inside functions.php ?
E) ???
there are so many different ways to go about it. covering all the pros and cons of each method is quite a task.
what would YOU do?