Skip to content

Instantly share code, notes, and snippets.

@ahmedmusawir
Created February 22, 2018 10:11
Show Gist options
  • Save ahmedmusawir/500f65f6fdfaa5a1b0c32b0aa3a461b8 to your computer and use it in GitHub Desktop.
Save ahmedmusawir/500f65f6fdfaa5a1b0c32b0aa3a461b8 to your computer and use it in GitHub Desktop.
ACF - SIMPLE GALLERY CODE - LA CASA
<main id="slider-block-mfw-001" class="d-flex align-items-center">
<section class="container-fluid">
<?php
$gallery_1 = get_field('slider_block_mfw_001_gallery');
if ($gallery_1) :
?>
<article class="slider-holder wow slideInUp">
<div class="home-slider">
<?php if ($gallery_1) : ?>
<?php foreach ( $gallery_1 as $image ) : ?>
<div>
<img class="img-responsive center-block" src="<?php echo $image['sizes']['large'] ?>" alt="" />
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</article>
<?php endif; ?>
</section>
</main>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment