Created
August 30, 2013 22:08
-
-
Save thoronas/6394780 to your computer and use it in GitHub Desktop.
ACF Image function
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 = wp_get_attachment_image_src(get_field('image'), 'medium'); ?> | |
<img src="<?php echo $image[0]; ?>"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the_sub_field( 'what_image' ) needs to be get_sub_field( 'what_image' )
Edit: Also what Joey said.