先進到網誌設計中,選擇〔修改HTML〕,並展開〔小裝置範本〕
先搜尋
<b:include data='post' name='post'/> |
把它改為
<b:if cond='data:blog.homepageUrl != data:blog.url'> <b:if cond='data:blog.pageType == "index"'> <!-- Show article title only --> <h3 class='post-title'><a expr:href='data:post.url'><data:post.title/></a></h3> <b:else/> <b:include data='post' name='post'/> </b:if> <b:else/> <h3 class='post-title'><a expr:href='data:post.url'><data:post.title/></a></h3> </b:if> |
就可以了!
如果是想要首頁文章可以出現內文,但其他頁只出現標題,那麼就改為以下
<b:if cond='data:blog.homepageUrl != data:blog.url'> <b:if cond='data:blog.pageType == "index"'> <!-- Show article title only --> <h3 class='post-title'><a expr:href='data:post.url'><data:post.title/></a></h3> <b:else/> <b:include data='post' name='post'/> </b:if> <b:else/> <b:include data='post' name='post'/> </b:if> |
資料來源:
http://abintech.twidv.com/2007/03/simply-result-of-label-and-search.html
不错!学习一下!
回覆刪除