0

是否可以仅在 Tumblr 主页上显示特定类别(例如“主页”)的帖子?

我希望使用“重定向”页面提供的其他类别。

4

2 回答 2

0

这个问题的重复。

简短的回答是肯定的,但 Marcel Overdijk 是正确的,因为唯一的解决方案是通过 CSS 隐藏帖子。基本上我们只是用“display:none;”隐藏没有“特色”标签的帖子。

遵循本指南:

(灵感来自 mircealungu 的建议

1.找到文章标签,添加类名:

类=“没有特色{TagsAsClasses}

如果它已经有一个类名,请在类名引号内添加上面的粗体部分。我的最终看起来像这样:

<article id="{PostID}" class="post notfeatured {TagsAsClasses} {PostType}{block:PermalinkPage} {block:Date}not-{/block:Date}page{/block:PermalinkPage}">

2.找到article标签前面的div标签,加上cla​​ssname:

class=" {block:TagPage} tag_page {/block:TagPage}{block:PermalinkPage}perma_page{/block:PermalinkPage} "

同样,如果一个类已经存在,只需在类名引号内添加上面的粗体部分。我的结局是这样的:

<div id="posts" class="{block:TagPage} tag_page {/block:TagPage}{block:PermalinkPage}perma_page{/block:PermalinkPage}" >

3.最后,将其添加到您的 CSS 中:

article.notfeatured {display: none;}
article.featured, .tag_page article.notfeatured, .perma_page article.notfeatured {display: block;}

现在,任何标记为“精选”的帖子都会显示在您的主页上,但不会显示其他内容。到目前为止对我来说没有任何问题,效果很好!你可以在这里看到它。

于 2015-04-07T00:37:31.353 回答
0

不幸的是,没有不可能。

唯一可能的是使用 css 隐藏某些类别。

于 2013-08-23T15:28:36.933 回答