Thumb değişkenini girmediğiniz takdirde yerine önceden tanımladığınız default resim…
Kod:
<?php $resim = get_post_meta($post->ID,'thumb', true);
if($resim != "") { ?>
<a href="<?php the_permalink() ?>">
<img class="alignleft" src="<? echo strtolower($resim); ?>"/></a>
<?php }else{ ?>
<a href="<?php the_permalink() ?>"><img class="alignleft" src="http://www.anarschi.com/resimyoksa.png" alt="" /></a>
<?php } ?>
thumb değişkenini kendi temanıza göre ayarlayın

[...] Burda verdiğim kodları kullanalım. <?php $resim = get_post_meta($post->ID,’programresmi‘, true); if($resim != “”) { ?> <a href=”<?php the_permalink() ?>”> <img class=”alignright” src=”<? echo strtolower($resim); ?>”/></a> <?php }else{ ?> <a href=”<?php the_permalink() ?>”><img class=”alignright” src=”http://www.anarschi.com/resimyoksa.png” alt=”" /></a> <?php } ?> [...]