Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
193 views
in Q2A Core by
How to change the default title tag?
by
+1
Do you mean <title> Hello World Website </title> ? Go to your admin, the first General tab to change your site title name.  If you would like to customize more with some funky conditions, you need to override the PHP function that output this in your current theme, or in a plugin. The default function is:

    public function head_title()
    {
        $pagetitle = strlen($this->request) ? strip_tags(@$this->content['title']) : '';
        $headtitle = (strlen($pagetitle) ? "$pagetitle - " : '') . $this->content['site_title'];

        $this->output('<title>' . $headtitle . '</title>');
    }
by
The above should be an answer rather than a comment.

Please log in or register to answer this question.

...