Skip to content

Instantly share code, notes, and snippets.

@tjhole
Last active July 10, 2016 00:13
Show Gist options
  • Save tjhole/fcb85844161e5293b051 to your computer and use it in GitHub Desktop.
Save tjhole/fcb85844161e5293b051 to your computer and use it in GitHub Desktop.
ACF: Image
<?php
$attachment_id = get_sub_field('image');
$size = "full"; // (thumbnail, medium, large, full or custom size)
$image_url = wp_get_attachment_image_src( $attachment_id, $size );
?>
<?php echo $image_url[0]; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment