我制作了一个模板页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; ?>