0

我正在尝试在我roots themebase.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。

4

2 回答 2

4
if (have_posts()) : $count = 0;            
while (have_posts()) : the_post(); $count++;
      echo '<h2>';
      the_title(); 
      echo '</h2>';
      the_content( 'Read the full post »' ); 
endwhile;

万一;

于 2012-12-24T10:40:15.113 回答
0

弄清楚了。我正在使用roots主题。在这个主题里面有base.php需要该行的文件

<?php include roots_template_path()?>

缺少这条线不允许它选择正确的模板。

于 2012-12-27T17:53:05.603 回答