我是WordPress的新手,正在尝试将网站转变为WordPress主题。在索引页面(静态页面)的底部有一个区域,用于存放两篇最新的帖子。我在后端创建了两个虚拟帖子来测试它。当我尝试在索引页上显示帖子时,它会显示主页的标题和内容,而不是最近帖子的内容。
这是我写的代码;
<?php $i = 0; while (have_posts() && $i < 3) : the_post(); ?>
<div class="blog-cards">
<img src="<?php bloginfo(\'template_url\'); ?>/img/highlight.jpg" alt="Blog Image">
<span class="meta"><small><?php the_date(); ?></small></span>
<h3 class="blog-title"><?php the_title(); ?></h3>
<p class="blog-body"><?php the_excerpt(); ?></p>
</div>
<?php $i++; endwhile; ?>