0
我有一個顯示HTML的while
循環。更改while循環中的第一個元素?
但是,我只需要第一次迭代的不同元素。
我該如何管理?這是我的代碼:
<?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;
?>
感謝您的幫助!