Salam, bootstrap silideri wp üçün inteqrasiya etməyə çalışıram. Bu sliderdə ilk item-ə active class əlavə olunmalıdır. Mən indi burda necə edim ki, döngü içindəki ilk item-ə active class əlavə olunsun?
<?php while (have_posts()) : the_post() ; ?>
<div class="item">
<?php the_post_thumbnail('thumbnail'); ?>
<div class="carousel-caption">
<?php the_title(); ?>
</div>
</div>
<?php endwhile; ?>







Verilmiş cavablar və yazılan şərhlər (2 cavab var)
1
həll yolunu tapdım:
<?php $index = 0; ?> <?php while (have_posts()) : the_post() ; ?> <div class="item <?php echo ($index++ == 0? "active" : ""); ?>"> <?php the_post_thumbnail('thumbnail'); ?> <div class="carousel-caption"> <?php the_title(); ?> </div> </div> <?php endwhile; ?>1
Çoxdur yolu. Belə də olar
<?php $class='active'; while (have_posts()) : the_post() ; ?> <div class="item <?php echo $class; $class=''; ?>"> <?php the_post_thumbnail('thumbnail'); ?> <div class="carousel-caption"> <?php the_title(); ?> </div> </div> <?php endwhile; ?>Sual verin
Cavab verin