Created
March 8, 2024 14:06
-
-
Save kasparsd/9a411e6d8af47e1b1db361d2aa3fff51 to your computer and use it in GitHub Desktop.
Fix SSL (HTTPs) URLs in WP content
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Fix SSL Please | |
Plugin URI: https://github.com/kasparsd/ssl-fix | |
GitHub URI: https://github.com/kasparsd/ssl-fix | |
Description: Ensure that everything works over SSL | |
Version: 0.1.1 | |
Author: Kaspars Dambis | |
Author URI: http://kaspars.net | |
*/ | |
add_action( 'plugins_loaded', array( FixSSLPlease::instance(), 'init' ) ); | |
class FixSSLPlease { | |
protected function __construct() {} | |
public function init() { | |
if ( ! is_ssl() ) { | |
return; | |
} | |
add_filter( 'wp_calculate_image_srcset', array( $this, 'image_src' ) ); | |
add_filter( 'the_content', array( $this, 'content_src' ) ); | |
add_filter( 'comment_text', array( $this, 'content_src' ) ); | |
add_filter( 'style_loader_tag', array( $this, 'script_src' ) ); | |
add_filter( 'script_loader_tag', array( $this, 'script_src' ) ); | |
add_filter( 'get_site_icon_url', 'set_url_scheme' ); | |
} | |
public static function instance() { | |
static $instance; | |
if ( ! isset( $instance ) ) { | |
$instance = new self; | |
} | |
return $instance; | |
} | |
function image_src( $sources ) { | |
foreach ( $sources as &$source ) { | |
$source['url'] = set_url_scheme( $source['url'] ); | |
} | |
return $sources; | |
} | |
function content_src( $comment ) { | |
return str_replace( 'src="http://', 'src="//', $comment ); | |
} | |
function script_src( $tag ) { | |
return str_replace( 'http://', '//', $tag ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment