Skip to content

Instantly share code, notes, and snippets.

@thoronas
Created August 30, 2013 22:08
Show Gist options
  • Save thoronas/6394780 to your computer and use it in GitHub Desktop.
Save thoronas/6394780 to your computer and use it in GitHub Desktop.
ACF Image function
<?php $image = wp_get_attachment_image_src(get_field('image'), 'medium'); ?>
<img src="<?php echo $image[0]; ?>">
@thoronas
Copy link
Author

the_sub_field( 'what_image' ) needs to be get_sub_field( 'what_image' )

Edit: Also what Joey said.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment