Skip to content

Instantly share code, notes, and snippets.

@benpearson
Created February 19, 2016 02:50
Show Gist options
  • Save benpearson/9714f3353c88df6e0bb1 to your computer and use it in GitHub Desktop.
Save benpearson/9714f3353c88df6e0bb1 to your computer and use it in GitHub Desktop.
WordPress - Disable responsive images
<?php
add_filter( 'max_srcset_image_width', function (){
return 1;
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment