wordpress:Mixed Content: The page at 'https://xxx/yyy/' was loaded over HTTPS, but requested an insecure script 'http://xxx/wp-includes/js/jquery/jquery.js?ver=1.11.3'. This request has been blocked; the content must be served over HTTPS. サイトをSSL化 (https)したときに出るエラー対処法
header.php 内の下記の箇所を
<?php wp_head() ?>
このコードに書き換えることで解決します。
<?php
ob_start();
wp_head();
$wp_head_contents = ob_get_clean();
…