Typecho关键字seo优化
typecho文章关键字可以有效帮助文章的收录,而不至于像我一样一篇文章都没收录,意识到后追悔莫及( ̄ー ̄)ニヤリ
  • 一定要学会使用文章自定义字段

关键字:字段名称处填写keywords,字段值处填写文章的关键字即可
描述:字段名称处填写description,字段值处填写文章描述即可


  • 如果文章太多,懒得再去添加,但是文章有标签的话可以尝试以下方式

将以下代码置于header.php中的<?php $this->header(); ?>之前,它会将你的标签作为该文章页面关键词


 <?php if($this->is('single')){

//【全站统一的规则】对于post/page页面,有限使用自定义字段中的设置

if(isset($this->fields->description)){

    $this->setDescription($this->fields->description);
}
if(isset($this->fields->keywords)){
    //如果有填写keywords,则优先使用,否则则尝试从标签生成关键字

    $this->setKeywords($this->fields->keywords);

}else{
    $this->setKeywords(implode(',',Typecho_Common::arrayFlatten($this->tags, 'name')));
}

} ?>