Skip to content

Instantly share code, notes, and snippets.

@stefanledin
Created March 3, 2018 11:40
Show Gist options
  • Select an option

  • Save stefanledin/491eec4b0a50dd89f29d298f47c4fa9a to your computer and use it in GitHub Desktop.

Select an option

Save stefanledin/491eec4b0a50dd89f29d298f47c4fa9a to your computer and use it in GitHub Desktop.
<?php
// Example using Advanced Custom Fields
$image = get_field('hero_image');
echo rwp_img( $image['ID'], array(
'sizes' => array( 'medium', 'large' ),
'attributes' => array(
'sizes' => '(min-width: 768px) 1024px, 320px'
)
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment