Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2.  
  3. $headerImageDesktop = get_field('header_image_desktop', 'option');
  4. $headerImageTablet = get_field('header_image_tablet', 'option');
  5. $headerImageMobile = get_field('header_image_mobile', 'option');
  6.  
  7. if ( $headerImageDesktop && $headerImageTablet && $headerImageMobile ): ?>
  8.  
  9. <div class="headerConatiner">
  10. <div class="headerImage">
  11. <!-- <img id="foo"
  12. src="<?php //echo $headerImageDesktop['url']; ?>"
  13. srcset="<?php //echo $headerImageDesktop['url']; ?> 1024w, <?php //echo $headerImageTablet['url']; ?> 960w, <?php //echo $headerImageMobile['url']; ?> 638w"
  14. sizes="100vw"
  15. alt="" > -->
  16.  
  17. <picture>
  18. <!--[if IE 9]><video style="display: none;"><![endif]-->
  19. <source srcset="<?php echo $headerImageDesktop['url']; ?>" media="(min-width: 960px)">
  20. <source srcset="<?php echo $headerImageTablet['url']; ?>" media="(min-width: 638px)">
  21. <img id="foo" srcset="<?php echo $headerImageMobile['url']; ?>" alt="">
  22. <!--[if IE 9]></video><![endif]-->
  23. </picture>
  24.  
  25. </div>
  26. </div>
  27.  
  28. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement