我有一个while
显示 HTML 的循环。
但是,我只需要一个不同的元素用于第一次迭代。
我该如何管理?这是我的代码:
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
?>
<div class="item" style="background-size:cover; background-image: url(<?php echo $image[0]; ?>); width: 100%; min-height: 300px;">
<div class="carousel-caption">
<h3><?php the_title(); ?></h3>
<p><?php comments_number( 'Pas de commentaires', '1 commentaire', '% commentaires' ); ?></p>
</div>
</div>
<?php
endwhile;
endif;
?>
谢谢您的帮助 !