mesela yazıya ilk ekli resmi..

function kucuk_resim($post_id) {
$id = (int) $post_id;
$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'numberposts' => 1,
'order' => 'ASC',
'orderby' => 'menu_order ID',
'post_status' => null,
'post_parent' => $id
);
$attachments = get_posts($args);
if ($attachments) {
return wp_get_attachment_thumb_url( $attachments[0]->ID );
}else{
return 'http://www.siteadi.com/varsayilan.jpg';
}
}

bu kod ile yapabiliyoruz.. eğer yazıda resim yoksa.. varsayilan çıkıyor..

sen temanın functions.php sindeki thumbnail ile alakalı kodu buraya yazarsan.. düzeltme yapabiliriz..