2016-08-21 8 views

回答

0

找到模板的代碼這些塊:

<b:includable id='feedLinks'>...Code here..</b:includable> 
<b:includable id='feedLinksBody' var='links'>...Code here...</b:includable> 

並替換它們與此:

<b:includable id='feedLinks'/> 
<b:includable id='feedLinksBody' var='links'/> 
1

你並不需要刪除,說不定哪天你可以再次使用它。也許只是不顯示,你可以使用CSS display: none

.post-feeds, .blog-feeds { 
    display: none; 
} 
+0

這對我有效。要在Blogger中查找CSS,請編輯主題>自定義>高級>在子菜單SCROLL DOWN中添加CSS,然後插入上面的代碼。 – rixter