Skip to content

Instantly share code, notes, and snippets.

@verticalgrain
Created January 17, 2017 18:41
Show Gist options
  • Select an option

  • Save verticalgrain/e5fc4fc99f15de692ef7604bc856a9d2 to your computer and use it in GitHub Desktop.

Select an option

Save verticalgrain/e5fc4fc99f15de692ef7604bc856a9d2 to your computer and use it in GitHub Desktop.
ACF Image srcset
function responsive_image_background($image_field_name) {
$imageobject = get_field($image_field_name);
echo '<img class="fullscreen__image-background" src="' . $imageobject['sizes']['superhero'] . '" srcset="' . $imageobject['sizes']['superhero'] .' '. $imageobject['sizes']['superhero-width'] .'w, ' . $imageobject['sizes']['hero'] .' '. $imageobject['sizes']['hero-width'] .'w, '. $imageobject['sizes']['large'] .' '. $imageobject['sizes']['large-width'] .'w">';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment