Şunun kurulumunu net bir şekilde anlatırsanız sevinirim.
WP'de yeniyim.

index.php kodlarım bu:

Alıntı
<?php
/**
* @package WordPress
* @subpackage Classic_Theme
*/
get_header();
?>
<div id="content">

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

<div <?php post_class() ?> id="post-<?php the_ID(); ?>">

<div class="totalcomments"><?php comments_popup_link(__('0'), __('1'), __('%')); ?></div>

<h1 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>

<div class="storycontent">
<?php the_content('Devamını oku &raquo;'); ?>
</div>

<div class="feedback">
<div class="postdate"><?php the_time('d F Y, l'); ?></div>
<div class="postcat"><?php the_category(' | '); ?></div>
</div>

<p class="spacer"></p>

</div><!-- /post -->

<?php endwhile; else: ?>

<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>

<?php endif; ?>

<div class="navigation">
<?php posts_nav_link(' | ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
</div>

</div><!-- /content -->
<?php get_footer(); ?>