Skip to content

Instantly share code, notes, and snippets.

@druellan
Created May 18, 2017 13:27
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 druellan/4a6a5e1d0b445d9edbf38e695e1221cc to your computer and use it in GitHub Desktop.
Save druellan/4a6a5e1d0b445d9edbf38e695e1221cc to your computer and use it in GitHub Desktop.
WordPress Picture source set
<?php
$img_src = wp_get_attachment_image_url($picture, 'medium');
$img_srcset = wp_get_attachment_image_srcset($picture);
?>
<picture>
<img src="<?php echo esc_url($img_src); ?>" srcset="<?php echo esc_attr($img_srcset); ?>">
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment