I am wanting to find out if the following is possible with PHP inside WordPress.
Basically if I have a directory in my site called "promos" that consists of 1 to many images (as these images can change), that I would like to read from within a PHP file into a carousel setup, i.e. something similar to this:
<div class="scrollable" id="browsable">
<div class="items">
<?php
$tot_images_from_promo_dir = [get_total_image_count_in_promos_dir];
for ( $counter = 1; $counter <= $tot_images_from_promo_dir; $counter ++) {
echo "<div>";
echo "<a href="#"><img src="[image_from_promo_directory]" /></a>
echo "</div>";
}
?>
</div>
</div>
Basically want to somehow with php read total amount of images in my promo directory and then use this total in my loop max value and read each image file name in the promo directory and pass into my <img src=[image_name_from_promo_dir]
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…