0

ホームページからすべての投稿をブロックしようとしています。それを行うコードはありますが、機能させる方法がわかりません。

どんな助けでも素晴らしいでしょう!

{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}
4

1 に答える 1

1

{block:TagPage}{block:IndexPage}を同時にレンダリングすることはできません。TagPage ブロックから IndexPage ブロックを削除します。

于 2013-05-19T02:52:52.123 に答える