Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created August 7, 2016 07:20
Show Gist options
  • Select an option

  • Save morgyface/9b1bc61d4fc45e189867c29b35822a5a to your computer and use it in GitHub Desktop.

Select an option

Save morgyface/9b1bc61d4fc45e189867c29b35822a5a to your computer and use it in GitHub Desktop.
WordPress | ACF Image Array
<?php
$image = get_field('image');
if( !empty($image) ):
$url = $image['url'];
$thumb = $image['sizes'][ 'thumbnail' ];
echo '<img src="' . $url . '">'; // full size image
echo '<img src="' . $thumb . '">'; // thumbnail image
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment