Not sure how this will "layout", so you may have more work to do with styling, etc., but try this:
Code:
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<div class="postarea">
<?php include(TEMPLATEPATH."/breadcrumb.php");?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(__('Read more'));?><div style="clear:both;"></div>
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
</div>
<div class="comments">
<?php comments_template('',true); ?>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar.php");?>
</div>
<?php get_footer(); ?>
I added this in to the page.php file:
Quote:
<div class="comments">
<?php comments_template('',true); ?>
</div>
|