Skip to content

Instantly share code, notes, and snippets.

@davemac
Forked from mattradford/acf_slick.php
Created May 8, 2017 11:48
Show Gist options
  • Save davemac/64c12583b17437da1a74b72a65b85fd1 to your computer and use it in GitHub Desktop.
Save davemac/64c12583b17437da1a74b72a65b85fd1 to your computer and use it in GitHub Desktop.
ACF slick slider
<?php if( have_rows('billboard') ): ?>
<div class="billboard">
<?php while( have_rows('billboard') ): the_row();
$imageArray = get_sub_field('image');
$imageURL = $imageArray['url'];
?>
<div class="slide-item" style="background-image: url('<?php echo $imageURL;?>');" >
<h1><?php the_sub_field('title'); ?></h1>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment