以默认的模板举例
1、以下代码复制后粘贴在header.php文件中的"</title>"前面
<?php if ($this->is('index')):echo " - ";$this->options->sub();endif; ?>
2、需要在functions.php中加入一小段代码
$sub = new Typecho_Widget_Helper_Form_Element_Text('sub', NULL, NULL, _t('网站副标题'), _t('在这里填入一行文字,作为首页Title的副标题'));
$form->addInput($sub);