I created a template file and am adding
PHP Code:
<?php $withcomments = 1; comments_template(); ?>
after the loop.
Here is the template code (Thanks for your help!)
PHP Code:
<?php
/* Template Name: Single Article of the Week Post */
list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options();
get_header();
extract($bfa_ata);
global $bfa_ata_postcount;
?>
<div id="interior_wrapper">
<?php
$year = date("Y");
$month = date('n');
if (($month == 1) || ($month == 2)) $year = $year - 1;
$page_title = get_the_title();
$page_title = get_post_meta($post->ID, 'bfa_ata_body_title', true);
$page_title = str_replace(' Game', '', $page_title);
?>
<div id="content_wrapper" style="float: left; width: 760px">
<div class="post-headline">
<h1><?php echo $page_title ?></h1>
</div>
<div id="page_content" class="clearfix">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
</div>
<div id="sidebar_wrapper">
<div id="sidebar_content">
<h2>Articles</h2>
<style>
#sidebar_content ul { list-style-type: none; padding: 0px; margin: 0px; }
#sidebar_content li { margin-bottom: 4px }
</style>
<ul>
<?php query_posts(array('cat'=> '3','showposts'=>'17','order'=>'DESC','orderby'=> 'title','orderby'=> 'post_date')); ?>
<?php while (have_posts()) : the_post();
$post_id = get_the_ID();
$page_title = get_the_title();
$page_title = str_replace(' Game', '', $page_title);
?>
<li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php echo $page_title; ?></a></li>
<?php endwhile; ?>
</ul>
</div>
</div>
<div style="clear: both">
<?php $withcomments = 1; comments_template(); ?>
</div>
</div>
<?php get_footer(); ?>