帖子不会出现在模板页面上

时间:2014-11-07 作者:azhpo

我制作了一个模板页galerie.php 我想在那里展示帖子。

为什么这样不行?帖子似乎只出现在home page 出于某种原因。

代码为:

<?php while(have_posts()) : the_post() ?>
      <div id="owl-images" class="owl-carousel">
        <a href="<?php the_post_thumbnail() ?>" data-lightbox="image-1" data-title="<?php the_title() ?>">
          <div class="item">
            <div class="lazyOwl" style="background:url("<?php the_post_thumbnail() ?>") no-repeat center center;background-size:cover;height:300px;" alt=""></div>
          </div>
        </a>
      </div>
      <?php endwhile; ?>

2 个回复
SO网友:Jbbhatti

1转到WordPress管理面板。2编辑主页3选择模板并更新4转到设置->阅读,选择主页

SO网友:Fatih SARI

您可以在while循环重置后添加(&A);query\\u posts()与以下内容相同:wp_reset_query(); query_posts(\'post_type=&showposts=10\');

结束