谁能告诉我从博客中删除订阅帖子(Atom)的更好选择,而不是通过使其与背景颜色相同来隐藏链接?
您不需要删除,也许有一天您可以再次使用它。也许只是不显示,您可以使用 CSS
display: none
.post-feeds, .blog-feeds {
display: none;
}
在模板中找到这些代码块:
<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'/>