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