Head scratching here: http://wordpress.org/extend/plugins/simple-post-thumbnails/
I can't get this to work, have uploaded the files, I can go into a post and add a thumbnail, but when calling the image it wont show up, heres my index.php:
<?php get_header(); ?>
<div id="content-container">
<div id="content">
<div id="body">
<?php if (have_posts()) : ?>
<?php query_posts('showposts=1&offset=0'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php p75GetThumbnail($post->ID, 200, 150); ?>
<h4><?php the_title(); ?></h4>
<?php the_excerpt (); ?>
<a class="read-more" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">More...</a>
<?php endwhile; ?>
<?php query_posts('showposts=1&offset=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<?php the_excerpt (); ?>
<a class="read-more" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">More...</a>
<?php endwhile; ?>
<?php query_posts('showposts=1&offset=2'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<?php the_excerpt (); ?>
<a class="read-more" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">More...</a>
<?php endwhile; ?>
<?php query_posts('showposts=1&offset=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<?php the_excerpt (); ?>
<a class="read-more" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">More...</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_footer(); ?>
Any ideas on how to get the thumbnail to show up?