home.php dosyasını sildiyseniz index.php dosyanızın, silmediyseniz home.php dosyanızın içeriğini aşağıdaki şekilde değiştirin.

Küçük resimlerinizin adreslerini de hpbottom özel alan ismi ile tanımlamalısınız.

<?php get_header(); ?>

<div id="content">

    <div id="contentleft">

        <div id="homepagetop">
            <div class="featuredtop">
                <?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
            </div>
        </div>

        <div class="postarea">

            <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

                <?php if( get_post_meta($post->ID, "hpbottom", true) ): ?>
                    <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "hpbottom", true); ?>" alt="<?php the_title(); ?>" /></a>
                <?php else: ?>
                    <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a>
                <?php endif; ?>
                <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
                <?php the_content_limit(350, "[Devamını oku]"); ?>

                <div style="border-bottom:1px dotted #2255AA; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>


            <?php endwhile; else: ?>

            <p><?php _e('Üzgünüz, kriterlerinize uygun sonuç bulunamadı.'); ?></p><?php endif; ?>

            <p><?php posts_nav_link(' — ', __('&laquo; Önceki sayfa'), __('Sonraki sayfa &raquo;')); ?></p>

        </div>

    </div>

<?php include(TEMPLATEPATH."/sidebar.php");?>

</div>

<?php get_footer(); ?>