サムネイルの大きさを変えるには

サムネイルの大きさを変えるには(参考:http://www.odysseygate.com/archives/633
/wp-admin/inline-uploading.php,line83-88

if ( $imagedata['width'] * $imagedata['height'] < 3 * 1024 * 1024 ) {
	if ( $imagedata['width'] > 128 && $imagedata['width'] >= $imagedata['height'] * 4 / 3 )
		$thumb = wp_create_thumbnail($file, 128);
	elseif ( $imagedata['height'] > 96 )
		$thumb = wp_create_thumbnail($file, 96);

この部分で、横幅が128px以上の場合もしくは縦幅が96px以上の場合サムネイルを作成するとあるので、縦・横ともに指定のピクセル以上でサムネイルを作成するようにすれば良い。