修改 blogger template將單一文章標題的超連結給移除及其他我有在用的 widget
02 August, 2008
把blogger中標題的 link 給移除(remove the hyperlink at single post of blogger)
在單一頁面中,blogger 還是在文章標題中做上超連結。我不是很喜歡,所以把它處理掉了。這也是我第一次研究自己修改 blogger 版面,因為到處都找不到要怎麼移除。Control panel -> Layout -> edit Html -> Expand Widget TemplatesFind for the following section:以標籤(label) 做分類
先看一下我在 婚禮紀錄網站 如何使用這個 Hactro 提供的 widget:我把這個 widget 配置在 sidebar,當做 目錄來使用。怎麼安裝請連到 Hactro 網站去看:Hoctro's Place: Showing Your Contents By Blogger's Labels
<b:includable id='post' var='post'><div class='post hentry'><a expr:name='data:post.id'/><b:if cond='data:post.title'><h3 class='post-title entry-title'><b:if cond='data:post.link'><a expr:href='data:post.link'><data:post.title/></a><b:else/><b:if cond='data:post.url'><a expr:href='data:post.url'><data:post.title/></a><b:else/><data:post.title/></b:if></b:if></h3></b:if><div class='post-header-line-1'/>
Put the following code after "<div class='post hentry'> ":<b:if cond='data:blog.pageType != "item"'>
and also put the following code before " <div class='post-header-line-1'/> ":<b:else/><h3 class='post-title entry-title'><data:post.title/></h3></b:if>
Here is the complete code:<b:includable id='post' var='post'><div class='post hentry'><b:if cond='data:blog.pageType != "item"'><a expr:name='data:post.id'/><b:if cond='data:post.title'><h3 class='post-title entry-title'><b:if cond='data:post.link'><a expr:href='data:post.link'><data:post.title/></a><b:else/><b:if cond='data:post.url'><a expr:href='data:post.url'><data:post.title/></a><b:else/><data:post.title/></b:if></b:if></h3></b:if><b:else/><h3 class='post-title entry-title'><data:post.title/></h3></b:if><div class='post-header-line-1'/>
後來我覺得這個工具很佔資源,網頁 loading會被拉慢,我還是大部份改回用 Link widget。只是不適用在我的方法。
目錄表單
Table of Contents,我是參照 Beautiful Beta 的 widget 設置,可以參考這:
http://beautifulbeta.blogspot.com/2007/04/blogtoc-widget-released.html
給網頁指定獨立的 Meta Tag
請參考:在 Blogger 中指定 meta tag 給特定網頁的方式及應用
3 comments:
所以這樣是不是每po一篇文章就要做一次這個動作?這樣template不就會變超長的。感謝你的回答。
如果是要給每一篇文章定一個 meta tag 的話,確實是要每一篇都要在 template 中加上一句。我是覺得把文章的標題改成 H1 tag 等小動作會比 meta TAG 來得有效。給你參考。
我也想把標題的 link 給移除
可是看不懂您是怎麼用的
能不能做個簡單的講解或教學?
Post a Comment