默认情况下 Typecho 的 Description 描述调用的设置里的基本描述内容,过于简单,通常为了SEO考虑我们可以完全自定义。
首先找到主题目录下的header.php这个文件。
找到如下代码:
<?php $this->header(); ?>
将其替换为:
<?php if($this->is('index')): ?>
<?php $this->header('description=工作中经常会遇到用户各种网站、服务器类问题,久而久之发现很多问题都是重复类似,于是诞生了这个知识系统,将平时遇到的问题收集整理,方便自己也利于他人。'); ?>
<?php else: ?>
<?php $this->header(); ?>
<?php endif; ?>
其中 description=就是您网站首页描述(description)
,请根据自身情况修改。
当然这里推荐另外一种写法:
<meta name="description" content="<?php if($this->is('index')) { $this->options->description();}elseif($this->is('category')){ echo $this->getDescription();}elseif($this->is('single')){$this->excerpt(200, '');} ?>">
<?php $this->header('description=&keywords=&generator=&template=&pingback=&xmlrpc=&wlw=&rss1=&rss2=&atom='); ?>
第二句中的description=&keywords=&generator=&template=&pingback=&xmlrpc=&wlw=&rss1=&rss2=&atom=表示不显示这些内容 & 为连接符。