发布作者: 阿良
作品采用: 《 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 》许可协议授权
今日心血来潮,打算看下文章页的seo标签,结果发现<head>
标签中的描述和关键词为空,于是打算找下原因,解决该问题。
在主题目录/public/head.php
下,发现描述和关键词的代码前面多了一个_
,删除后即可解决描述和关键词为空的问题。
下列代码有没有不好说,反正我的文章页都会加上如下seo,需要的自行加下<head>
标签中
<?php if ($this->is('post')) : ?>
<!--内页seo优化-->
<meta property="og:locale" content="zh_CN">
<meta property="og:type" content="article"/>
<meta property="article:published_time" content="<?php $this->date('c'); ?>"/>
<meta property="article:author" content="<?php $this->author(); ?>" />
<meta property="article:published_first" content="<?php $this->options->title() ?>, <?php $this->permalink() ?>" />
<meta property="og:title" content="<?php $this->title() ?>" />
<meta property="og:url" content="<?php $this->permalink() ?>" />
<?php endif; ?>
大佬,文章页优化的代码是加在哪个模板里?
在head.php中,只要在head标签里就好