我是新來的WordPress。 我有我的網站(CMS)分爲幾個頁面樹狀分層結構。 我試圖查看子頁面內特定類別的帖子。 但由於某些原因事件的簡單的「循環」:howto使用WordPress的子頁面來查看帖子?
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
僅顯示(!!)的頁面內容,並沒有帖子在所有... 我怎樣才能做到這一點?
10x。