Skip to content

Instantly share code, notes, and snippets.

@yellowberri-snippets
Last active August 29, 2015 14:01
Show Gist options
  • Save yellowberri-snippets/6c1ab5bc7c94c9b3db13 to your computer and use it in GitHub Desktop.
Save yellowberri-snippets/6c1ab5bc7c94c9b3db13 to your computer and use it in GitHub Desktop.
PHP: ACF: Barebones Image Field
$image = get_field('image');
$image['alt'] = ( empty($image['alt']) ? "\x20" : $image['alt'] );
echo "<img src='" . $image['sizes']['medium'] . "' alt='" . $image['alt'] . "'>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment