Created
March 28, 2014 19:01
-
-
Save galengidman/9840441 to your computer and use it in GitHub Desktop.
get ACF image size URL by ID
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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