Writing a plugin, setting the h1 title by:
$qa_content['title'] = 'plugin name';
However, I want the page title (the title that the browser shows on top and can be seen in the bookmark) to be different.
How to achieve that from within a plugin? qa_register_plugin_module('page', ...
I have tried: $qa_content['site_title'] = 'Other name';
But it does not work.
With a theme I know I could override public function head_title() at: $this->output('<title>'.$headtitle.'</title>');