Skip to content

Instantly share code, notes, and snippets.

@mantismamita
Created April 8, 2015 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mantismamita/ae5bf2d03d5cdf3863eb to your computer and use it in GitHub Desktop.
Save mantismamita/ae5bf2d03d5cdf3863eb to your computer and use it in GitHub Desktop.
flexslider markup in WordPress (uses ACF)
$images = get_field('slides');
if( $images ) { ?>
<div id="slider" class="flexslider">
<ul class="slides">
<?php foreach( $images as $image ): ?>
<li>
<img src="<?php echo $image['sizes']['large']; ?>" alt="<?php echo $image['alt']; ?>" />
</li>
<?php endforeach; ?>
</ul>
</div>
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment