دوست من کد های زیر رو جایگزین محتویات فایل index.php پوسته خود کنید، تا مطالب صفحه اول شما کامل نمایش داده شود.
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entry">
<div id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<abbr title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s – %2$s'), the_date('', '', '', false), get_the_time()) ?></abbr> <!-- by <?php the_author() ?> -->
<br /><?php the_content('Read the rest of this entry »'); ?><br />
<p class="postmetadata">Posted in <span class="cty"><?php the_category(', ') ?></span> | <?php edit_post_link('Edit', '', ' | '); ?> <span class="cmt"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span></p>
</div></div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('<span class="prev"> Previous Entries</span>') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries <span class="next"> </span>') ?></div>
</div>
<?php else : ?>
<div class="entry">
<h2>Not Found</h2>
Sorry, but you are looking for something that isn't here.
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>