Skip to content

Instantly share code, notes, and snippets.

@mikeoberdick
Created March 10, 2023 21:26
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 mikeoberdick/5120317ce542cf49c39ffb5946808287 to your computer and use it in GitHub Desktop.
Save mikeoberdick/5120317ce542cf49c39ffb5946808287 to your computer and use it in GitHub Desktop.
Use the responsive srcset functionality with ACF.
<?php $image = get_field('about_img');
if( $image ) {
echo wp_get_attachment_image( $image, 'full', "", array( "class" => "img-fluid" ) );
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment