spider58 adlı üyeden alıntı: mesajı görüntüle
başka bir site ile sizin sitenizin konu girişi farklıdır hocam. temanın index.php sini buraya ekleyin. bakalım.
<?php get_header(); ?>
<?php
    $options = get_option('blocks_options');
    if (function_exists('wp_list_comments')) {
        add_filter('get_comments_number', 'comment_count', 0);
    }
?>

<?php if ($options['notice']) : ?>
    <div class="block">
        <div class="
        <?php if($options['notice_color'] == 1) {echo 'content';}
            else if($options['notice_color'] == 3){echo 'content r';}
            else{echo 'content g';}
        ?>">
            <div id="notice_content"><?php echo($options['notice_content']); ?></div>
        </div>
    </div>
<?php endif; ?>

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

    <div class="post">
        <h3 class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>

        <div class="content">
            <?php the_excerpt(); ?>
            <div class="fixed"></div>
        </div>

        <div class="meta">
            <?php if ($options['author'] && function_exists('get_avatar') && get_option('show_avatars')) : ?>
                <div class="author"><?php the_author_posts_link_with_avatar(); ?></div>
            <?php endif; ?>
            <div class="act">
                <?php
                    if (function_exists('the_views')) the_views(true, '', ' | ');
                    comments_popup_link(__('Yorum Yok', 'blocks'), __('1 Yorum', 'blocks'), __('% comments', 'blocks'));
                    edit_post_link(__('Duzenle', 'blocks'), ' | ', '');
                ?>
            </div>
            <div class="info">
                <?php
                    the_time(__('M jS, Y', 'blocks'));
                    if ($options['categories']) {
                        printf(__(' | Filed under %1$s', 'blocks'), get_the_category_list(', '));
                    }
                ?>
            </div>
            <?php if ($options['tags']) : ?>
                <div class="tags"><?php _e('Tags: ', 'blocks'); the_tags('', ', ', ''); ?></div>
            <?php endif; ?>
            <div class="fixed"></div>
        </div>
    </div>

<?php endwhile; ?>

    <div id="pagenavi" class="block">
        <?php if(function_exists('wp_pagenavi')) : ?>
                <?php wp_pagenavi() ?>
            <?php else : ?>
                <div class="content g">
                    <span class="newer"><?php previous_posts_link(__('&laquo; Newer Entries', 'blocks')); ?></span>
                    <span class="older"><?php next_posts_link(__('Older Entries &raquo;', 'blocks')); ?></span>
                    <div class="fixed"></div>
                </div>
        <?php endif; ?>
    </div>

<?php else: ?>
    <div class="block">
        <div class="content small r">
            <?php _e('Sorry, no posts matched your criteria.', 'blocks'); ?>
        </div>
    </div>

<?php endif; ?>

<?php get_footer(); ?>