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

ZBLOG PHP程序页面标题Title的优化 无需使用插件

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

最近一直比较忙,没有时间折腾ZBLOG PHP程序和主题,导致很多东西都有点淡忘。所以,正如准备搭建这个博客一样,用来记录一些常用的技术文档,一来便于自己以后寻找的时候直接复制,二来也可能有机会给有需要的您发现并且使用,这也是使我开心的事情。

不论是使用WORDPRESS还是使用ZBLOG程序,我们能不用插件的时候尽量不用,而且对于ZBP来说很多插件还需要续费,这个比WP就不太友好。比如在头部标题优化的时候默认的主题和程序可能不是太友好,这里分享一个非插件实现ZBLOG PHP程序页面标题Title的优化。

{if $type==’index’&&$page==’1′}
<title>自定义首页标题</title>
<meta name=”keywords” content=”自定义首页关键字” />
<meta name=”description” content=”自定义首页描述” />
{elseif $type==’article’}
<title>{$title}_{$name}</title>
<meta name=”description” content=”{php}echo preg_replace(‘/[\r\n\s]+/’, ”, trim(SubStrUTF8(TransferHTML($article->Content,'[nohtml]’),80)).’…’);{/php}” />
{else}
<title>{$title} – {$name}</title>
{/if}
<link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”{$host}zb_system/xml-rpc/?rsd” />
<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”{$host}zb_system/xml-rpc/wlwmanifest.xml” />
<link rel=”alternate” type=”application/rss+xml” href=”{$feedurl}” title=”{$name}” />
<link rel=”stylesheet” rev=”stylesheet” href=”{$host}zb_users/theme/{$theme}/style/{$style}.css” type=”text/css” media=”all”/>

主体部分在上面,具体根据我们实际的主题中补充公共的部分代码。

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2117.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