Last active
August 16, 2019 15:03
-
-
Save sophiawzey/a9f5c65710f3b11e7e901998a27edd23 to your computer and use it in GitHub Desktop.
[lozad stuff]
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 | |
$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