blogger 資料整理
RSS 相關
- blogger 的 ATOM/RSS 預設是依更新時間排序,網址為:
- http://vixual.blogspot.com/feeds/posts/default
- http://vixual.blogspot.com/feeds/posts/default?alt=rss
如果要讓它依發表時間排序,網址須改為:
- http://vixual.blogspot.com/feeds/posts/default?orderby=published
- http://vixual.blogspot.com/feeds/posts/default?alt=rss&orderby=published
- Label(標籤)的 RSS 網址:
- http://vixual.blogspot.com/feeds/posts/default/-/label
將上方的」label「換成 Blogger 上的標籤名稱即可。
- blogger 的留言的 ATOM/RSS 網址為:
- http://vixual.blogspot.com/feeds/comments/default
- http://vixual.blogspot.com/feeds/comments/default?alt=rss
如何讓 blogger 不自動載入 ajax
- 在 <body> 的下一行加上:
<script type='text/freezescript'> _WidgetManager._Init=function(){}; _WidgetManager._SetPageActionUrl=function(){}; _WidgetManager._SetDataContext=function(){}; WidgetManager._SetSystemMarkup=function(){}; WidgetManager._RegisterWidget=function(){}; </script>
如何讓版面依內文或列示載入不同項目
- 判斷是否為內文:
<b:if cond='data:blog.pageType == "item"'> 載入的項目 </b:if>
- 判斷是否為文章列示:
<b:if cond='data:blog.pageType != "item"'> 載入的項目 </b:if>
No comments yet.