Wpisy z kategorii w sliderze
-
Mam taki problem, otóż generuje sobie wpisy w sliderze lecz nie wiem jak zrobić żeby tylko pierwszy w nich miał klasę active a reszta z automatu juz nie
<?php query_posts('category_name=oferty'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="item active"> <div class="col-xs-12 col-sm-6 col-md-3"> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?> <img src="<?php echo $image[0]; ?>" class="img-responsive"> <div class="box"> <p><?php the_title(); ?></p> <p><?php the_field('ulica'); ?></br><?php the_field('kod_pocztowy'); ?> <?php the_field('miasto'); ?></p> </div> </div> </div> <?php endwhile; else: ?> <p><?php _e('Brak nieruchomości do sprzedaży','Home') ?></p> <?php endif; ?> <?php wp_reset_query(); ?>
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- Temat ‘Wpisy z kategorii w sliderze’ jest zamknięty na nowe odpowiedzi.