今天有在给客户企业网站调整页面SEO元素的时候,采用的是ZBLOG程序,这里需要对TAG页面进行关键字和描述的调用处理。默认情况下有的插件和常规的代码一般是对文章页面或者首页,甚至包括分类页面是有类似的文档的,但是这里需要对于TAG页面进行处理。
这里老蒋将我们采用的办法记录下来。
{if $type=='index'&&$page=='1'}
<title>首页标题</title>
<meta name="keywords" content="首页关键字" />
<meta name="description" content="首页描述" />
{elseif $type=='article'}
<title>{$title}</title>
<meta name="description" content="{php}echo preg_replace('/[\r\n\s]+/', '', trim(SubStrUTF8(TransferHTML($article->Content,'[nohtml]'),80)).'...');{/php}" />
{elseif $type=='tag'}
<title>{$title}</title>
<meta name="keywords" content="{$title}" />
<meta name="description" content="{$title}" />
{else}
<title>{$title}</title>
{/if}
这里我主要是单独给TAG页面用到:
$type=='tag'
定义区分单独的TAG分页模式。
本文出处:老蒋部落 » ZBLOG设置Tag页面调用关键字和描述的方法 | 欢迎分享