I need to create something like this in my picture, i want to do this with php, something like this
$count = 0;
while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="item">
<?php if( $count == 1 ) { echo '<div class="col-sm-6">'; } ?>
<?php echo '<div class="col-sm-6">'; ?>
<img src="sample">
<?php echo '</div>'; ?>
<?php if( $count == 1 ) { echo '</div>'; } ?>
</div>
<?php $count++; endwhile
with bootstrap like this :
<div class="owl-carousel">
<div class="item">
<div class="col-sm-6">
<div class="col-sm-12">
<img src="sample">
</div>
<div class="col-sm-12">
<img src="sample">
</div>
</div>
<div class="col-sm-6">
<img src="sample">
</div>
</div>
</div>
my code is wrong, i know, i need an Idea, how to do this, thank you
You have to do this in 2 parts first you have to build an associative array which will contain all 12 images URL, then you can loop through that array to display the images
1st part to built an array:
2nd part to diplay
owl carousel
: