Thank you.
My theeme single.php does not seem to have the_content()
call.
It has:
<div id="wrapper">
<?php include(TEMPLATEPATH . "/menu.php"); ?>
<?php include(TEMPLATEPATH . "/banner.php"); ?>
<div class="content">
<?php if($options['bb_sidebar_layout'] == 'l' or $options['bb_sidebar_layout'] == 'll' or $options['bb_sidebar_layout'] == 'lr') { ?>
<?php include(TEMPLATEPATH . "/leftsidepanel.php"); ?>
<?php } ?>
<div class="container">
<ul class="posts">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<?php include (TEMPLATEPATH . "/item.php"); ?>
<?php if (function_exists('wp_list_comments')): ?>
<?php comments_template('', true); ?>
<?php endif; ?>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
</div>
<?php if($options['bb_sidebar_layout'] == 'r' or $options['bb_sidebar_layout'] == 'rr' or $options['bb_sidebar_layout'] == 'lr') { ?>
<?php include(TEMPLATEPATH . "/rightsidepanel.php"); ?>
<?php } ?>
<div class="clear"></div>
</div>
<?php get_footer(); ?>
</div>
I take my code would go in the middle of of this bit:
<ul class="posts">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<?php include (TEMPLATEPATH . "/item.php"); ?>
<?php if (function_exists('wp_list_comments')): ?>
<?php comments_template('', true); ?>
<?php endif; ?>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
Between these two bits of code:
<?php include (TEMPLATEPATH . "/item.php"); ?>
<?php if (function_exists('wp_list_comments')): ?>