Typecho自定义首页的description和keywords信息
目的:
typecho通过自有函数输出HTML头部信息不完善,出于SEO考虑,想要自定义首页的html头部信息(Description,Keywords)
实现方法:
打开主题模板下的header.php文件,找到
<?php $this->header(); ?>
修改为
<?php if ($this->is('index')) { ?>
<meta name="description" content="typeecho.cn是一个与typecho相关的网站,本站内容主要涉及typecho安装后的一系列基础设置和优化。" />
<meta name="keywords" content="<?php $this->options->keywords(); ?>" />
<?php }else{?>
<?php $this->header();} ?>
完成!
本文链接:https://www.typeecho.cn/post/8.html
版权声明:转载或引用请注明出处
点赞 0
打赏