刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

综合话题讨论

版主: le720

回复
zenoven
帖子: 4
注册时间: 2010年 4月 20日 07:44
联系:

刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 zenoven »

我用的是typecho的默认模板。
将原来的header.php中
<title><?php $this->options->title(); ?><?php $this->archiveTitle(); ?></title>

替换为

<title><?php if ($this->is('index')){
$this->options->title();
}else{
$this->archiveTitle('','','|');
$this->options->title();
}
?>
</title>

具体效果可以看看这个 www.jingang.org
orzb
帖子: 22
注册时间: 2009年 11月 18日 10:35

Re: 刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 orzb »

IP送上~
mayagamer
帖子: 18
注册时间: 2009年 4月 5日 07:52

Re: 刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 mayagamer »

应该是有利的
头像
ClayMore
帖子: 2483
注册时间: 2007年 11月 29日 02:55
来自: Sleeping Forest
联系:

Re: 刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 ClayMore »

<?php if($this->is('index')): ?><?php $this->options->title(); ?><?php endif; ?>
<?php if($this->is('page')): ?><?php $this->options->title(); ?><?php $this->archiveTitle('','_',''); ?><?php endif; ?>
<?php if($this->is('post')): ?><?php $this->archiveTitle('','','_'); ?><?php $this->keywords('_'); ?>_<?php $this->options->title(); ?><?php endif; ?>
<?php if($this->is('archive')): ?><?php $this->options->title(); ?><?php $this->archiveTitle('_','_',''); ?><?php endif; ?>
joyla.org
帖子: 55
注册时间: 2010年 5月 8日 05:57
联系:

Re: 刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 joyla.org »

到底那个好啊!
wpxue
帖子: 20
注册时间: 2010年 11月 24日 11:09
联系:

Re: 刚刚修改了下title的书写方式 应该对SEO有利吧。。。。代码如下

帖子 wpxue »

真纠结啊 这样就ok了

代码: 全选

首页 博客标题
其他页面:标题 - 博客名称
回复