Typecho自定义title标题SEO优化
Typecho的默认标题不是太符合SEO标准,喜欢注重SEO的朋友,可以用下面的代码替换header.php文件中的<title>与</title>中间部分的代码
<?php if($this->_currentPage>1) echo '第 '.$this->_currentPage.' 页 - '; ?><?php $this->archiveTitle('', '', ' - '); ?><?php $this->options->title(); ?>
如果想给首页加个副标题,可以在上面的代码末尾继续加入以下代码,对首页进行判断输出首页标题:
<?php if($this->is('index')): ?> - 首页副标题 | 站点关键词<?php endif; ?>
具体效果可以看保哥笔记的标题。
- Typecho将分类添加到导航菜单中
- Typecho首页和分类页调用文章内容截取
- Typecho分类输出默认链接CSS样式修改
- Typecho伪静态规则及301跳转设置
- Typecho在文章中插入广告代码投放广告
本文标题:《Typecho自定义title标题SEO优化》
网址:https://zhangwenbao.com/typecho-custom-title-header.html