是否可以仅在Tumblr首页上显示特定类别(例如“主页”)帖子?
我希望使用“重定向”页面提供其他类别。
答案 0 :(得分:0)
不幸的是,不可能。
只有可能使用css隐藏某些类别。
答案 1 :(得分:0)
简短的回答是肯定的,但Marcel Overdijk是正确的,因为唯一的解决方案是通过CSS隐藏帖子。基本上我们只是隐藏那些没有特色的帖子"标记为"显示:无;"。
请遵循本指南:
(受mircealungu的建议here的启发。)
1。找到文章标记,并添加类名:
class =" notfeatured {TagsAsClasses} "
如果它已有类名,请在类名引号内添加上面粗体的部分。我最终看起来像这样:
<article id="{PostID}" class="post notfeatured {TagsAsClasses} {PostType}{block:PermalinkPage} {block:Date}not-{/block:Date}page{/block:PermalinkPage}">
2. 找到文章标记之前的div标记,并添加类名:
class =&#34; {block:TagPage} tag_page {/ block:TagPage} {block:PermalinkPage} perma_page {/ block:PermalinkPage} &#34;
同样,如果一个类已经存在,只需在类名引号内添加上面粗体的部分。我这样结束了:
<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;}
现在任何标记为&#34;特色&#34;将显示在您的主页上,但没有别的。到目前为止我没有任何问题,它的效果很好!你可以看到它here。