欢迎访问服务器技术网-www.fuwuqijishu.com

ZBLOG设置Tag页面调用关键字和描述的方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 74次浏览 0个评论 扫描二维码

今天有在给客户企业网站调整页面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分页模式。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2212.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900