Skip to content

Instantly share code, notes, and snippets.

@daomapsieucap
Created September 11, 2021 14:54
Show Gist options
  • Select an option

  • Save daomapsieucap/7e67aa69c242f774e0cc5bd6654c9acf to your computer and use it in GitHub Desktop.

Select an option

Save daomapsieucap/7e67aa69c242f774e0cc5bd6654c9acf to your computer and use it in GitHub Desktop.
Remove image srcset
<?php
/**
* Remove image srcset
*/
add_filter('wp_calculate_image_srcset', 'dc_remove_srcset');
function dc_remove_srcset(){
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment