IhsanNet adlı üyeden alıntı: mesajı görüntüle
index.php de konu özeti çekilmişse (get_the_excerpt) bu şekilde degiştirin the_content tabi temanızda nasıl çekildigine baglı farklı şekildede çekilmiş olabilir.index.php verebilirseniz bakarım.

<?php get_header(); ?>
        <div id="content">
            <div id="postarea">

<?php $tc_feat_check = get_option('tc_feat_check'); if($tc_feat_check): ?>
        <div class="featured_section">
            <div class="featured_in">
                    <a href="<?php $tc_feat_link = get_option('tc_feat_link'); echo $tc_feat_link; ?>"><img src="<?php $tc_feat_content = get_option('tc_feat_content'); echo $tc_feat_content; ?>" alt="featured" /></a>
            </div>
        </div>
<?php endif; ?>

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

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

    <?php endwhile; else: ?>

        <div class="featured_section">
            <div class="featured_in">
                <h3 style="margin-bottom:800px;"><?php _e('Sorry, no posts matched your criteria.'); ?></h3>
            </div>
        </div>

    <?php endif; ?>

    <div class="pagenavigation">
		<div class="navleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
		<div class="navright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    <div class="clear"></div>
    </div>

            </div>

                <?php get_sidebar(); ?>

            </div>
<?php get_footer(); ?>