如果想要这种效果的title该怎么弄。。。

综合话题讨论

版主: le720

回复
gax100
帖子: 24
注册时间: 2010年 1月 13日 06:53

如果想要这种效果的title该怎么弄。。。

帖子 gax100 »

以前用wordpress可以单独设置首页的title

比如。
首页标题是
55555

文章的标题是
博文名_4444

<title><?php if (is_home() ) { ?>55555<?php }else{?><?php wp_title(''); ?>_4444<?php } ?></title>



这个是wordpress的代码,在typecho里该怎么弄?
fen
帖子: 96
注册时间: 2008年 6月 26日 03:59

Re: 如果想要这种效果的title该怎么弄。。。

帖子 fen »

代码: 全选

<?php if ($this->is('index')): ?>
    55555
<?php else: ?>
    <?php $this->archiveTitle('','',''); ?>_4444
<?php endif; ?>
gax100
帖子: 24
注册时间: 2010年 1月 13日 06:53

Re: 如果想要这种效果的title该怎么弄。。。

帖子 gax100 »

谢谢你了。完好可用。
回复