Thank you. I did and it does have "the_content()" but I've tried different combination and none of them seem to work.
I must be change the wrong bit of code, I've done this a hundred times, but this time I can't figure out the write combination.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class('single-item'); ?> id="post-<?php the_ID(); ?>">
<h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="post-body">
<?php
if ($flg_img_extract) {
$content = get_the_content();
$content = apply_filters('the_content', $content);
$content = adjust_single_image($content);
echo $content;
else {
the_content();
}
?>
</div>
<?php wp_link_pages('before=<p class="pagination" id="post-pagination"><span class="prefix">' . __('Pages:') . '</span>'); ?>
<p class="post-meta">
Published on <?php the_time( get_option('date_format') ); ?> <?php the_time(); ?>.<br />
Filed under: <?php the_category(', ') ?> <?php the_tags('Tags: ', ', '); ?>
<?php edit_post_link(__("Edit This"), '(', ')'); ?>
</p>
</div>
<?php comments_template(); ?>