最近一直比较忙,没有时间折腾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\”/>
主体部分在上面,具体根据我们实际的主题中补充公共的部分代码。