Skip to content

Instantly share code, notes, and snippets.

@peterhebert
Created December 27, 2019 16:47
Show Gist options
  • Save peterhebert/e13279c163d9dc31e662aa56219fd08c to your computer and use it in GitHub Desktop.
Save peterhebert/e13279c163d9dc31e662aa56219fd08c to your computer and use it in GitHub Desktop.
Force URLs in srcset attributes into HTTPS scheme
/*
* Force URLs in srcset attributes into HTTPS scheme.
* This is particularly useful when you're running a Flexible SSL frontend like Cloudflare
*/
function ssl_srcset( $sources ) {
foreach ( $sources as &$source ) {
$source['url'] = set_url_scheme( $source['url'], 'https' );
}
return $sources;
}
add_filter( 'wp_calculate_image_srcset', 'ssl_srcset' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment