Skip to content

Instantly share code, notes, and snippets.

@kasparsd
Created March 8, 2024 14:06
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 kasparsd/9a411e6d8af47e1b1db361d2aa3fff51 to your computer and use it in GitHub Desktop.
Save kasparsd/9a411e6d8af47e1b1db361d2aa3fff51 to your computer and use it in GitHub Desktop.
Fix SSL (HTTPs) URLs in WP content
<?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