Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created March 15, 2017 18:04
Show Gist options
  • Select an option

  • Save luisfelipe-dev/dfffc99df2d008803e27e73ca62de968 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/dfffc99df2d008803e27e73ca62de968 to your computer and use it in GitHub Desktop.
<?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; ?>
@flarmn

flarmn commented Mar 15, 2017

Copy link
Copy Markdown

Wow! Interesting!
$image['alt'] - does it read alt image property from DOM?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment