httpsにリダイレクトしている状態で
http混合ですよとブラウザが言っていたので、確認すると画像だけがhttpでした。
ソースを見ると下記のような部分があり
<?php
$args =
array(
'order' => 'ASC',
'orderby' => 'date',
'post_type' => 'attachment',
'post_parent' => $post->ID,
'post_mime_type' => 'image',
'post_status' => null,
'numberposts' => -1,
);
$attachements = get_posts($args);
foreach ($attachements AS $attachement) {
?>
<li><img src="<?php echo($attachement->guid); ?>" /></li>

imgタグがhttpで出ているのですが、これをhttpsで出力するにはどうすれば良いでしょうか?
https無しで、/wp-contentから始まるurlで出力した方が良いのですが、そうすることはできるのでしょうか?