Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created January 28, 2016 17:20
Show Gist options
  • Save SeanChDavis/13f4c173c18855c60c4b to your computer and use it in GitHub Desktop.
Save SeanChDavis/13f4c173c18855c60c4b to your computer and use it in GitHub Desktop.
Disable WordPress Responsive Images
<?php // DO NOT COPY THIS LINE
function disable_srcset( $sources ) {
return false;
}
add_filter( 'wp_calculate_image_srcset', 'disable_srcset' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment