Skip to content

Instantly share code, notes, and snippets.

@spigotdesign
Last active March 1, 2016 19:01
Show Gist options
  • Save spigotdesign/f1ae5263e4bec51e111d to your computer and use it in GitHub Desktop.
Save spigotdesign/f1ae5263e4bec51e111d to your computer and use it in GitHub Desktop.
ACF Get Image snippets
<?php // Get Image url (for background) ?>
<?php $bgImage = esc_html(get_field('img_field')); ?>
<?php $bgURL = wp_get_attachment_image_src($bgImage, 'full'); ?>
<div class="bg" style="background-image: url(<?php echo $bgURL[0]; ?>);"></div>
<?php // Get Image attatchment (for full image output) ?>
<?php $bpImage = esc_html(get_field('img_field')); ?>
<?php echo wp_get_attachment_image($bpImage, 'full'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment