我试图阻止主页上的所有帖子,但我有代码可以执行此操作,但我不知道如何使其正常工作。
任何帮助都会很棒!
{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}
答案 0 :(得分:1)
您无法同时进行{block:TagPage}
和{block:IndexPage}
渲染。从TagPage块中删除IndexPage块。