更改博客的标题

时间:2013-11-17 17:35:11

标签: html blogger

我想改变博客标题,此时我的博客标题是“我的超级Xbox游戏”(没有引用),当我发新帖后标题附上我的帖子标题,这里是仅显示帖子标题的代码。 (将其添加到html模板)

查找

<title><data:blog.pageTitle/></title>

并将其替换为:

<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if> 

好的,这是博客网址的结构,

Blogger页面包含/ p在url中... Blogger帖子包括2013/11年度的年度和月份... Blogger标签在网址中包含标签字... Blogger档案包括网址中的档案词......

现在,如果你想以每个标签,帖子和页面部分应该改变锚文本或网站链接的方式制作超链接,那么你可以使用if语句。

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<b:if cond='data:blog.pageType == &quot;archive&quot;'><a href='http://mywebsite.com/' target='_blank'>my keyword</a>
</b:if> <b:if cond='data:blog.searchQuery'><a href='http://mywebsite.com/' target='_blank'>another keyword</a></b:if>
<b:if cond='data:blog.searchLabel'><a href='http://mywebsite.com/' target='_blank'>other keyword</a></b:if><b:if cond='data:blog.url == data:blog.homepageUrl'><a href='http://mywebsite.com/' target='_blank'>one another keyword</a></b:if>
<b:else/><a href='http://mywebsite.com/' target='_blank'>new keyword</a></b:if>

现在我如何在博客标题中使用此声明,如果我的主索引页面打开它显示博客标题“我的超级Xbox游戏”(没有引用),如果任何其他页面打开它显示它显示“ Xbox游戏“(没有引用)只删除我的超级单词,以及我的帖子标题。如果你想要

,你也可以获得一些关于它的信息here

请记住,我不想删除标题,只是想要做一点改变。

2 个答案:

答案 0 :(得分:0)

您分享的article是关于其他内容的教程。它展示了如何仅显示标题而不是摘要。

您的问题是如何在1页上显示一些标题及其在不同页面上的变体。

据我所知,Blogger API不支持此功能。

答案 1 :(得分:0)

您需要在标记中手动添加这些条件,您的问题将得到解决。

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title>My Super Xbox Games</title>
<b:else/>
<title>Xbox Games</title>
</b:if>

谢谢:)