Created
February 22, 2018 10:11
-
-
Save ahmedmusawir/500f65f6fdfaa5a1b0c32b0aa3a461b8 to your computer and use it in GitHub Desktop.
ACF - SIMPLE GALLERY CODE - LA CASA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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