Alıntı
<?php if(function_exists('rps_show')) echorps_show(); ?>
<?php query_posts('showposts=15'); ?>
<?php while (have_posts()) : the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php if(has_post_thumbnail()) { the_post_thumbnail(); }
elseif( $thumbnail = get_post_meta($post->ID, 'resim', true) ){ ?>
<img src ="<?php echo $thumbnail; ?>" alt="<?php the_title(); ?>" style="width: 150px; height:150px;" title = "<?php the_title(); ?>" />
<?php } ?>
</a>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
</li>
</ul>
<?php endwhile;?>
Bu şekilde yaptığınızda olacaktır.
Dipnot: Harici eklentilere gerek yok bu işler için, ThimbThumb gibi sunucuyu yoran eklentileri hiç kullanmanızı önermem.