2013-05-19 46 views
0

我想阻止從我的主頁的所有帖子,我有代碼做到這一點,但我不知道如何使它工作。難度應用tumblr CSS

任何幫助將是偉大的!

{block:IndexPage} 
<p> This will be printed on the homepage </p> 
{/block:IndexPage} 

{block:TagPage} 
{block:IndexPage} 
<p> This will be printed on any page `tagged/xxx`</p> 

{block:Text} 
<!-- Add your post type loops here --> 
{/block:Text} 

{/block:IndexPage} 
{/block:TagPage} 

回答

1

你不能{block:TagPage}{block:IndexPage}呈現在同一時間。從TagPage塊中刪除IndexPage塊。

+0

混亂是我的錯。我在這裏更新了我的原始答案:http://stackoverflow.com/questions/16581570/can-i-hide-all-posts-from-tumblrs-main-blog-while-keeping-them-unhidden-from-th – mikedidthis