您可以创建页面模板(用于服务页面),然后将其设置为要在其中显示帖子的特定页面。
之后,打开页面模板并将其粘贴到下面的代码中,以显示帖子。
<?php
query_posts(\'cat=1\'); // cat=1 , id of category you want to show (e.g. cat id of food category )
while (have_posts()) : the_post(); // loop for posts with category id = 1
the_content(); // print content of all founded posts
endwhile; // end loop.
?>