<h4>Latest Post</h4>
<ul>
<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php $id =$post->ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern = '!<img.*?src="(.*?)"!';
preg_match_all($pattern, $the_content, $matches);
$image_src = $matches['1'][0]; ?>
<li>
<h5><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a><h5>
<img src="<?php if($image_src != '') { echo $image_src; } ?>" alt="<?php the_title(); ?>" width="200px" height="200px" />
</li>
<?php endwhile;?>
<ul>istediğiniz yere koyabilirsinizindex
sidebar
single vs
css ile süslemeyi unutmayın.