Hi,
Remove the loop code in index.php file of your theme and replace with this:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="postmetadata">
<span class="metaEntry"><abbr class="published" title="<?php the_time(__('l, F jS, Y, g:i a', 'example')); ?>"><?php the_time(__('F j, Y', 'example')); ?></abbr></span><span class="delim">|</span>
<span class="metaEntry"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?></span><span class="delim">|</span>
<?php edit_post_link('Edit', '<span class="metaEntry">', '</span><span class="delim">|</span>'); ?>
<span class="metaEntry"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span>
</p>
<div class="entry">
<?php the_excerpt(); ?><a href="<?php the_permalink() ?>">Read more »</a>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
Thanks,
Shane G.
just realized the link was wrong before…fixed now.
thanks for the info shane…though i’m still confused how i then implement/place the blog within the site?
now have my blog up at:
http://cortlandareatribune.com/blog
so i’m pretty much looking to display just the posts and maybe the archive content within that dark gray area.
any help would be appreciated.