View Single Post
Old 11-13-2006, 03:55 AM  
King Soil
Confirmed User
 
Join Date: Oct 2006
Posts: 195
Quote:
Originally Posted by jMEGA View Post
change your wp index.php to:

PHP Code:
<?php if (have_posts()) : ?>

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

            <div class="post" 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>
                <small><?php the_time('F jS, Y'?> <!-- by <?php the_author() ?> --></small>

                <div class="entry">
                    <?php the_content('Read the rest of this entry &raquo;'); ?>
                </div>

                <p class="postmetadata">Posted in <?php the_category(', '?> | <?php edit_post_link('Edit'''' | '); ?>  <?php comments_popup_link('No Comments »''1 Comment »''% Comments »'); ?></p>
            </div>

<?php endwhile; ?>
<?php 
endif; ?>

Thanks a lot man! Thats exactly what I needed to see to get it in order.
King Soil is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote