Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. $image = get_field( 'image' );
  3.  
  4. if ( ! empty( $image ) ) {
  5. // thumbnail
  6. $size = 'medium';
  7. $thumb = $image['sizes'][ $size ];
  8. } else {
  9. $thumb = '/wp-content/uploads/2019/01/placeholder.jpg';
  10. } ?>
  11.  
  12. <div class="lozad" data-background-image="<?= $thumb ?>" style="background-repeat: no-repeat; background-position: center; background-size: cover;"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement