Last active
March 1, 2016 19:01
-
-
Save spigotdesign/f1ae5263e4bec51e111d to your computer and use it in GitHub Desktop.
ACF Get Image snippets
This file contains hidden or 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 // 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