I've read all the Q's & A's here and I am still confused.. Like someone else's situation I have an overall header/site-nav/footer that I'd like to wrap around the Q&A pages. I've done this with many other applications using php include statments
<?php include('inc_logo_banner_nav.htm');?>
in the overall_head and overall_foot files
I copied the Candy theme and renamed it and will work with that.. but I am completely stumped on where to make this change..
I thought maybe I could do it in:
qa-include/qa-theme-base.php
function body()
{
$this->output('<BODY');
$this->body_tags();
$this->output('>');
$this->output ('<?php include('inc_logo_banner_nav.htm');?>;
but that spit an error..
Parse error: syntax error, unexpected T_STRING in /home/mysite/public_html/question2answer/qa-include/qa-theme-base.php on line 264
Can I get some baby step help please??
I know I can put what I want in the custom head/foot in the layout section, but that means I have to maintain the included info in 2 places, I am really trying to avoid that...