Skip to content

Instantly share code, notes, and snippets.

@szbl
Created February 19, 2016 21:44
Show Gist options
  • Save szbl/c62bce9adb2d2de5460f to your computer and use it in GitHub Desktop.
Save szbl/c62bce9adb2d2de5460f to your computer and use it in GitHub Desktop.
<?php
function szbl_ssl_srcset_fix( $src_list )
{
foreach ( $src_list as $k => $src ) {
$src_list[ $k ]['url'] = set_url_scheme( $src['url'], 'https' );
}
return $src_list;
}
add_filter( 'wp_calculate_image_srcset', 'szbl_ssl_srcset_fix' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment