Şimdiden teşekkürler.
<?php $screen = get_post_meta($post->ID,'screen', true); ?> <img src="<?php echo ($screen); ?>" width="80" height="55" alt="" />
3
●265
<?php $screen = get_post_meta($post->ID,'screen', true); ?> <img src="<?php echo ($screen); ?>" width="80" height="55" alt="" />
<?php if( get_post_meta($post->ID, "screen", true) ) { ?>
<img src="<?php echo get_post_meta($post->ID, "screen", true); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); width="80" height="55" ?>" />
<?php } else { ?>
<img src="VARSAYILAN RESIM ADRESI" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="80" height="55" />
<?php } ?>VARSAYILAN RESIM ADRESI yazan yeri özel alan olmaması halinde çıkacak resim adresi ile değiştir