brianmaierjr
9/18/2017 - 3:14 PM

Responsive Images with ACF

Responsive Images with ACF

<?php
	$image = get_field('banner_bg_image');
	$medium = $image['sizes'][ 'medium' ];
	$large = $image['sizes'][ 'large' ];
	$full = $image[ 'url' ];
?>
<style>
@media screen and (min-width: 1024px) {
	.banner--interior {
		background-image: url(<?php echo $full; ?>);
	}
}

@media screen and (min-width: 801px) and (max-width: 1024px) {
	.banner--interior {
		background-image: url(<?php echo $large; ?>);
	}
}
@media screen and (max-width: 800px) {
	.banner--interior {
		background-image: url(<?php echo $medium; ?>);
	}
}
</style>