Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created March 2, 2017 16:45
Show Gist options
  • Save solid-pixel/1d2084c9356a65fae5e0f04bb0ee7621 to your computer and use it in GitHub Desktop.
Save solid-pixel/1d2084c9356a65fae5e0f04bb0ee7621 to your computer and use it in GitHub Desktop.
Set ACF Object Image as Background
<?php
$image = get_field('image_field_slug'); // the image field slug - set the field Return Value to 'Array'
$size = 'large'; // the image size
$thumb = $image['sizes'][ $size ]; //get the URL
echo '<div class="div-30" style="background:url(' . $thumb . ')"></div>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment