Last active
December 14, 2015 20:05
-
-
Save sarvar/5dc144d9aadc25364ca7 to your computer and use it in GitHub Desktop.
acf, getting thumbnail size image from field
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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