Created
March 15, 2017 18:04
-
-
Save luisfelipe-dev/dfffc99df2d008803e27e73ca62de968 to your computer and use it in GitHub Desktop.
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
| <?php | |
| $images = get_field('galeria1'); | |
| if( $images ): ?> | |
| <div id="sync1" class="owl-carousel"> | |
| <?php foreach( $images as $image ): ?> | |
| <div class="item"><h1><img src="<?php echo $image['sizes']['large']; ?>" alt="<?php echo $image['alt']; ?>" /></h1></div> | |
| <?php endforeach; ?> | |
| </div> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wow! Interesting!
$image['alt'] - does it read alt image property from DOM?