how to displays 3 different divs in each slide in owl carousel in wordpress loop?

131 views Asked by At

I need to create something like this picture, i want to do this but i dont know what should to do

enter image description here

<div class="owl-carousel">

    <?php while ( $query->have_posts() ) : $query->the_post(); ?>

        <div class="item">
            <div class="left-side">
                <div class="full-width">
                    <?php the_post_thumbnail( 'thumb-sm' ); ?>
                </div>
                <div class="full-width">
                    <?php the_post_thumbnail( 'thumb-sm' ); ?>
                </div>
            </div>
            <div class="right-side">
                <?php the_post_thumbnail( 'thumb-lg' ); ?>
            </div>
        </div>`

    <?php endwhile; ?>

</div>`
0

There are 0 answers