Step 6: Embedding Post Entries into your Blog.
This part is where we tell Wordpress where and how to display the blog posts on each page. Copy the code below into the index.php file exactly where you want your posts to appear, you can alter this to the look and feel of your site.
<?php while(have_posts()) : the_post(); ?>
<div class="post">
<div class="title">
<h2><a href="<?php the_permalink(); ?> "><?php the_title(); ?></a></h2>
</div>
<div class="info">
<ul>
<li><?php the_time('F dS, Y') ?></li>
<li><?php the_category(', '); ?></li>
<li><em><?php the_author(); ?></em></li>
</ul>
</div>
<div class="text">
<?php the_content("); ?>
<span class="more"><em><a href="<?php the_permalink(); ?>">Continue reading</a></em></span>
</div>
</div>
<div class="divider"></div>
<?php endwhile; ?>
This coding embeds each post available onto the page using post title, URL, category, author, date and content. When you feel a bit more confident you can alter this code to get your desired effect but for now we are going to keep things simple.

