Skip to content

Instantly share code, notes, and snippets.

@lrdiv
Created November 14, 2013 20:28
Show Gist options
  • Save lrdiv/7473785 to your computer and use it in GitHub Desktop.
Save lrdiv/7473785 to your computer and use it in GitHub Desktop.
Pull specific image size from custom field by image ID
<?php
$attachment_id = the_field('the_image');
$size = 'small';
$image = wp_get_attachment_image_src($attachment_id, $size);
?>
<img src="<?php echo $image[0]; ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment