Guest User

Untitled

a guest
Apr 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <picture>
  2. <source srcset="<?php echo wp_get_attachment_image_url($img_id, '1440x480'); ?> 1x, <?php echo wp_get_attachment_image_url($img_id, '2880x960'); ?> 2x" media="(min-width: 992px)">
  3. <source srcset="<?php echo wp_get_attachment_image_url($img_id, '990x300'); ?> 1x, <?php echo wp_get_attachment_image_url($img_id, '1980x600'); ?> 2x" media="(min-width: 768px)">
  4. <source srcset="<?php echo wp_get_attachment_image_url($img_id, '760x300'); ?> 1x, <?php echo wp_get_attachment_image_url($img_id, '1520x600'); ?> 2x" media="(min-width: 576px)">
  5. <source srcset="<?php echo wp_get_attachment_image_url($img_id, '570x250'); ?> 1x, <?php echo wp_get_attachment_image_url($img_id, '1140x500'); ?> 2x" media="(max-width: 575px)">
  6. <img src="<?php echo wp_get_attachment_image_url($img_id, '1440x480'); ?>" alt="">
  7. </picture>
Add Comment
Please, Sign In to add comment