Skip to content

Instantly share code, notes, and snippets.

@danielpataki
Created November 21, 2015 10:01
Show Gist options
  • Save danielpataki/a3521076c16c6ada994c to your computer and use it in GitHub Desktop.
Save danielpataki/a3521076c16c6ada994c to your computer and use it in GitHub Desktop.
WordPress 4.4
<?php
$img_src = wp_get_attachment_image_url( $attachment_id, 'medium' );
$img_srcset = wp_get_attachment_image_srcset( $attachment_id, 'medium' );
?>
<img src="<?php echo esc_url( $img_src ); ?>"
srcset="<?php echo esc_attr( $img_srcset ); ?>"
sizes="(max-width: 50em) 87vw, 680px" alt="A rad wolf">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment