Hi guys,
I’m trying to repeat the Videos in foreach loop, i’m little bit confused while the Video does not render on frontend, but here is the image that show, everything render properly.
thanks!
<?php
$iframe = get_field('video');
foreach ( $iframe as $mp4){ ?>
<video width="620" autoplay muted loop controls poster="<?php echo $mp4['poster_video']['url'] ;?>">
<source src="<?php echo $mp4['videos'] ;?>" type="video/mp4">
Your browser doesn't support HTML5 video tag.
</video>
<?php }
?>