I just want to index my website Homepage and Question & Answers Only. Please guide me how to write code for homepage like this :
if ($this->template=='question')
$this->output('<meta name="robots" content="index, follow"/>');
Override the method head_metas() in your theme, e.g. like this:
function head_metas() { qa_html_theme_base::head_metas(); // invoke method from parent class if ($this->template=='question') { $this->output('<meta name="robots" content="index, follow"/>'); } }
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.