我正在尝试在我roots theme
的base.php
文件首页上显示帖子。
我已将循环添加为
<?php while (have_posts()) : the_post(); ?>
<?php
echo '<h2>';
the_title();
echo '</h2>';
the_content( 'Read the full post »' ); ?>
<?php endwhile;?>
但是,这只会显示第一页的内容和标题。
我如何让它显示帖子?我在 settings -> reading 下将帖子数设置为 3。