<!--This is where the thumbnails are found for the featured page - note the custom field name for this image is "thumbnail".-->
<!--Replace cat=3 with the Category ID you want to display in this section.-->
<?php $recent = new WP_Query("cat=3&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 5px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" width="70" height="70" /></a>
<?php else: ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 5px 0px 0px;" src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" width="70" height="70" /></a>
<?php endif; ?>
<?php the_content_limit(100, "[Devamı]"); ?>resimleri özel alandan "thumbnail" olarak eklersin kategori ID sinide ayarlarsın. yazı istemiyosan devamı yazan kodu kullanmasın.