Home › Forums › Add-ons › Gallery Field › Add videos on ACF Gallery › Reply To: Add videos on ACF Gallery
Here’s a simple solution:
<?php
$images = get_field('gallery');
foreach( $images as $image ):
$data_type = pathinfo($image['url'], PATHINFO_EXTENSION);
if ($data_type == 'mp4') {?>
<video>
<source src="<?php echo $image['url'];?>" type="video/mp4">
Your browser does not support the video tag.
</video>
<?php } else {
echo wp_get_attachment_image($image['ID'], 'large');
} endforeach;
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.