Skip to content

Instantly share code, notes, and snippets.

@joemcgill
Created December 12, 2015 06:25
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 joemcgill/77ac6df9cf2e8a207e02 to your computer and use it in GitHub Desktop.
Save joemcgill/77ac6df9cf2e8a207e02 to your computer and use it in GitHub Desktop.
remove_max_srcset_image_width
// Remove max_srcset_image_width.
function remove_max_srcset_image_width( $max_width ) {
return false;
}
add_filter( 'max_srcset_image_width', 'remove_max_srcset_image_width' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment