Sponser Link
No.1
[php] <?php if (has_post_thumbnail()): ?><?php the_post_thumbnail(array(150,150)); ?>
<?php else: ?>
<img src=”<?php echo get_template_directory_uri(); ?>/img/noimage.gif”>
<?php endif;?>
[/php]
No.2
[php]
<?php
if (has_post_thumbnail()){
the_post_thumbnail(array(150,150));
}else{
echo ‘<img src=”‘.get_bloginfo(‘template_url’).’/img/noimage.gif” alt=”NoImage”>’;
}?>
[/php]
Sponser Link