プラグインのSSL対応
●プラグイン
・jQuery Colorbox
最新の状態に更新するとレイアウトが崩れるので現状維持。
・スキーマーにhttpが記述されていたのでssl対応に読み込めないので修正対応。
jquery-colorbox/includes/jquery-colorbox-frontend.php
261行目付近
function addJQueryJS() {
if ($this->isTrue('useGoogleJQuery')) {
if ($this->isTrue('debugMode')) {
$jQueryLibraryUrl = "//code.jquery.com/jquery-".JQUERYLIBRARY_VERSION.".js";
}
else {
$jQueryLibraryUrl = "//code.jquery.com/jquery-".JQUERYLIBRARY_VERSION.".min.js";
}
wp_deregister_script('jquery');
wp_register_script('jquery', $jQueryLibraryUrl, false, JQUERYLIBRARY_VERSION, true);
}
//enqueues WP's jQuery library if useGoogleJQuery==false
wp_enqueue_script('jquery');
}