Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created November 6, 2013 18:33
Show Gist options
  • Save tjhole/7341625 to your computer and use it in GitHub Desktop.
Save tjhole/7341625 to your computer and use it in GitHub Desktop.
ACF: Image
<?php
$attachment_id = get_field('field_name');
$size = "full"; // (thumbnail, medium, large, full or custom size)
$image = wp_get_attachment_image_src( $attachment_id, $size );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
<img src="<?php echo $image[0]; ?>" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment