Skip to content

Instantly share code, notes, and snippets.

@jamesmorrison
Created March 1, 2016 16:11
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 jamesmorrison/ee81d3e2ac06833a18a4 to your computer and use it in GitHub Desktop.
Save jamesmorrison/ee81d3e2ac06833a18a4 to your computer and use it in GitHub Desktop.
<?php
/*
* Force URLs in srcset attributes into HTTPS scheme.
*/
add_filter( 'wp_calculate_image_srcset', function( $sources ) {
foreach ( $sources as &$source ) {
$source['url'] = set_url_scheme( $source['url'], 'https' );
}
return $sources;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment