Skip to content

Instantly share code, notes, and snippets.

@cccamuseme
Last active October 4, 2024 20:01
Show Gist options
  • Save cccamuseme/13c3d94df5778cab8def4cf8bd624953 to your computer and use it in GitHub Desktop.
Save cccamuseme/13c3d94df5778cab8def4cf8bd624953 to your computer and use it in GitHub Desktop.
Display ACF image using custom image size - set acf to return image ID
// Use acf as image array
<?php
$image = get_sub_field('FIELD_NAME');
$image_url = $image['sizes']['CUSTOM_SIZE'];
?>
<img src="<?php echo $image_url; ?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment