Skip to content

Instantly share code, notes, and snippets.

@sophiawzey
Last active August 16, 2019 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sophiawzey/a9f5c65710f3b11e7e901998a27edd23 to your computer and use it in GitHub Desktop.
Save sophiawzey/a9f5c65710f3b11e7e901998a27edd23 to your computer and use it in GitHub Desktop.
[lozad stuff]
<?php
$image = get_field( 'image' );
if ( ! empty( $image ) ) {
// thumbnail
$size = 'medium';
$thumb = $image['sizes'][ $size ];
} else {
$thumb = '/wp-content/themes/topfloor-parcel/assets/images/placeholder.png';
} ?>
<div class="lozad" data-background-image="<?= $thumb ?>" style="background:url(/wp-content/themes/topfloor-parcel/assets/images/placeholder.png) no-repeat center; background-size: cover;"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment