<?php $image = get_post_meta($post->ID, 'thumb_image', true); ?>
                        <?php if ( get_post_meta($post->ID, 'thumb_image', true) ) { ?>
                            <a href="<?php the_permalink() ?>"><img src="<?php echo $image; ?>" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" class="thumb_image" /></a>
                        <?php } else {?>
                            <a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_url'); ?>/images/no-thumb.png" title="<?php the_title(); ?>" alt="<?php the_title(); ?>" class="thumb_image" /></a>
                        <?php } ?>
Bu satırları yazı döngüsünün içine koyarsanız özel alan eklemiş olursunuz. Hatta özel alanınızın adı thumb_image olur. Üstelik /images/ klasörü içerisine atacağınız no-thumb.png isimli resim ise thumb eklenmediği zaman gözükür...