Ok...
I modified code of layout.
php to change the default picture. Here is that code...
<div class="box">
<?
php
include(TEMPLATEPATH . '/includes/version.
php');
$the_query = new WP_Query('cat=-'. $ex_feat . ',-' . $ex_vid . '&showposts=' . $showposts . '&orderby=post_date&order=desc');
$counter = 0; $counter2 = 0;
while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
?>
<?
php $counter++; $counter2++; ?>
<div class="post <?
php if ($counter == 1) { echo 'fl'; } else { echo 'fr'; $counter = 0; } ?>">
<?
php if ( get_post_meta($post->ID, 'image', true) ) { ?> <!-- DISPLAYS THE IMAGE URL SPECIFIED IN THE CUSTOM FIELD -->
<img src="<?
php echo bloginfo('template_url'); ?>/thumb.
php?src=<?
php echo get_post_meta($post->ID, "image", $single = true); ?>&h=57&w=100&zc=1&q=95" alt="" class="th" />
<?
php } else { ?> <!-- DISPLAY THE DEFAULT IMAGE, IF CUSTOM FIELD HAS NOT BEEN COMPLETED -->
<img src="<?
php bloginfo('template_directory'); ?>/images/an10057.jpg" alt="" class="th" />
<?
php } ?>
<h2><?
php the_category(', ') ?></h2>
<h3><a title="Permanent Link to <?
php the_title(); ?>" href="<?
php the_permalink() ?>" rel="bookmark"><?
php the_title(); ?></a></h3>
<p class="posted">Posted on <?
php the_time('d F Y'); ?></p>
<p><?
php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?> <span class="continue"><a title="Permanent Link to <?
php the_title(); ?>" href="<?
php the_permalink() ?>">Continue Reading</a></span></p>
<p class="comments"><?
php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?></p>
</div><!--/post-->
<?
php if ( !($counter2 == $showposts) && ($counter == 0) ) { echo '<div class="hl-full"></div>'; ?> <div style="clear:both;"></div> <?
php } ?>
<?
php endwhile; ?>
<div class="fix" style="height:20px"></div>
<p class="ar hl3"><a href="<?
php echo bloginfo('wpurl').'/?page_id='.$GLOBALS['archives_id']; ?>" class="more">SEE MORE ARTICLES IN THE ARCHIVE</a></p>
</div><!--/box-->
I read through article a couple times and tried changing the key to "thumbnail" and "thumb" while switching the value to image gallery post link and the link to image inside the content folder. I still cannot get the individual post to display its own image. The modified posts display either a question mark or an X.