一种方法是修改文件:首页。php在子主题的文件夹中,并包括以下内容:
<!-- loop through the posts -->
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php the_content(); ?> <!-- post content -->
</div><!-- .entry-content -->
</article><!-- #post-## -->
<?php endwhile; // end of the loop. ?>
上面的代码片段将遍历站点上的每个帖子,并在每个帖子的标记中包含一个非常简单的名称、帖子类型和实际帖子本身。
您可能应该将此代码段放在ID为“main”的中,但您可以将其放在任何需要的地方--任何页面上(不仅仅是前面)
享受