phpcms v9网站首页的标题可以控制,但是栏目页,内容页的标题非常的长,用户体验不好
修改模板文件header.html的
<title>……</title>
改成
<title>{if isset($SEO[‘title’]) && !empty($SEO[‘title’])}{$SEO[‘title’]}站点标题{else}{$SEO[‘site_title’]} {/if}</title>
内容页的header要新建个模板,header_content.html,复制header.html的代码,把
<title>……</title>改成<title>{$title} – 蓝文资源库 </title>
修改show.html模板第一行,
{template “content”,”header”}改成{template “content”,”header_content”}
大功告成,更新下首页、栏目页、内容页。
效果如下:
首页标题:站点标题 – 站点副标题
栏目标题:栏目标题 – 栏目名 – 站点标题
文章标题:文章标题 – 站点标题