> kvex 様
早速のご回答ありがとうございます。
入れてあるプラグインは以下の4つです。
Akismet
Faster Image Insert
Lightbox 2
SI CAPTCHA Anti-Spam
File Gallery も入れたのですが、使いそうもないので今は停止してあります。
よろしくお願いいたします。
あぁ、わかった。TwentyTenですかね?
// The height and width of your custom header. You can hook into the theme's own filters to change these values.
// Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values.
define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) );
define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 198 ) );
// We'll be using post thumbnails for custom header images on posts and pages.
// We want them to be 940 pixels wide by 198 pixels tall.
// Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php.
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
ということで、198の画像を作ります(ヘッダ用)
できました!!
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
をコメントアウトすればよいんですよね。
ありがとうございました。