Skip to content

Instantly share code, notes, and snippets.

@galengidman
Created March 28, 2014 19:01
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save galengidman/9840441 to your computer and use it in GitHub Desktop.
get ACF image size URL by ID
<?php
// first, get the image ID returned by ACF
$image_id = get_field('my_image_field');
// and the image size you want to return
$image_size = 'thumbnail';
// use wp_get_attachment_image_src to return an array containing the image
// we'll pass in the $image_id in the first parameter
// and the image size registered using add_image_size() in the second
$image_array = wp_get_attachment_image_src($image_id, $image_size);
// finally, extract and store the URL from $image_array
$image_url = $image_array[0];
?>
<img src="<?php echo $image_url; ?>" alt="">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment