Skip to content

Instantly share code, notes, and snippets.

@sarvar
Last active December 14, 2015 20:05
Show Gist options
  • Save sarvar/5dc144d9aadc25364ca7 to your computer and use it in GitHub Desktop.
Save sarvar/5dc144d9aadc25364ca7 to your computer and use it in GitHub Desktop.
acf, getting thumbnail size image from field
<?php $image = get_sub_field('NAMEOFYOURSUBIMAGEFIELD'); ?>
<?php if( $image ): ?>
<img src="<?php echo $image['sizes']['YOURCUSTOMSIZE']; ?>" width="<?php echo $image['sizes']['YOURCUSTOMSIZE-width']; ?>" height="<?php echo $image['sizes']['YOURCUSTOMSIZE-height']; ?>" alt="<?php echo $image['alt']; ?>" />
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment