اگه میشه در مورد سوال اولم بیشتر توضیح بدین دقیقا چه کاری رو باید انجام بدم. چون من زیاد کد نویسی بلد نیستم.
اینم سورس فایل ایندکس
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="single" id="post-<?php the_ID(); ?>">
<div class="title">
<h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
</div>
<div class="cover">
<div class="entry">
<?php $preview = get_post_meta($post->ID, 'preview', $single = true); ?>
<img class="ethumb" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $preview; ?>&h=80&w=120&zc=1" alt=""/>
<?php if(function_exists('the_content_limit')) { ?>
<?php the_content_limit(500); ?>
<?php } else { ?>
<?php } ?>
<div class="clear"></div>
</div>
</div>
<div class="singleinfo">
<div class="more"> " title="Permanent Link to <?php the_title(); ?>"> Permanent Link to </div>
</div>
</div>
<?php endwhile; ?>
<div id="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php else : ?>
<h1 class="title">موجود نمی باشد</h1>
<p>اموجود نمی باشد.</p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>