Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
422 views
in Q2A Core by
How ca I add title and content?

If possible post the functions used on a template.

I can help you create a "Codex" after learning the functions you create, so if you need help doing this just ask.
related to an answer for: How to add custom pages?

1 Answer

0 votes
by
I think i found it:

$this->body_prefix();
           
            $this->output('<DIV CLASS="qa-body-wrapper">', '');

            $this->header();
            $this->sidebar();
            $this->main();
            $this->footer();
           
            $this->output('</DIV> <!-- END body-wrapper -->');
           
            $this->body_suffix();
...