Created
February 19, 2014 18:26
-
-
Save zenman/9098305 to your computer and use it in GitHub Desktop.
ACF, display image only if there is one, include the alt title. Ensure the filed type in ACF is "Image Object"
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 $img = get_field('FIELD_NAME_HERE'); if($img): ?> | |
<img src="<?php echo $img['url']; ?>" alt="<?php echo $img['alt']; ?>"> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment