我的 WordPress 帖子循环有问题。我想分解帖子循环,在帖子中添加一些 HTML div 标签。例如,我试图.wrap
在第一次发布后在帖子周围添加一个 div。因为它是为了包装帖子,所以它应该只有一次。
问题是.wrap
div 由于循环而被重复。如何打破循环,.wrap
只添加一次 div 然后继续循环?
这是我的代码:
while ($wp_query->have_posts()) :
$wp_query->the_post();
if($wp_query->current_post <= 1){ ?>
<div class="x">
.. post 1
</div>
<?php }
if($wp_query->current_post > 1){ ?>
<div class="wrap"> <!-- should be only once -->
<div class="y">
.. post 2
</div>
<div class="y">
.. post 3
</div>
</div><!-- should be only once -->
<?php } ?>
endwhile;