More Detail:
I have figured out how to create page templates. This is great, however, I am hoping I can alter the code of the (now duplicated) file so that it will omit the sidebars.
After removing all reference to the sidebars in the template, I’m still stuck with the same problem. What follows is the code from my page-no-cols.php file:
<?php
/*
Template Name: Page with No Columns
*/
?>
<?php get_header(); ?>
<div id="content" class="section">
<?php arras_above_content() ?>
<?php
if ( arras_get_option('single_meta_pos') == 'bottom' ) add_filter('arras_postfooter', 'arras_postmeta');
else add_filter('arras_postheader', 'arras_postmeta');
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php arras_above_post() ?>
<div id="post-<?php the_ID() ?>" <?php arras_single_post_class() ?>>
<?php arras_postheader() ?>
<div class="entry-content">
<?php the_content( __('<p>Read the rest of this entry »</p>', 'arras') ); ?>
<?php wp_link_pages(array('before' => __('<p><strong>Pages:</strong> ', 'arras'),
'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<!-- <?php trackback_rdf() ?> -->
<?php arras_postfooter() ?>
<?php if ( arras_get_option('display_author') ) : ?>
<div class="about-author clearfix">
<h4><?php _e('About the Author', 'arras') ?></h4>
<?php echo get_avatar(get_the_author_id(), 48); ?>
<?php the_author_description(); ?>
</div>
<?php endif; ?>
</div>
<?php arras_below_post() ?>
<a name="comments"></a>
<?php comments_template('', true); ?>
<?php arras_below_comments() ?>
<?php endwhile; else: ?>
<?php arras_post_notfound() ?>
<?php endif; ?>
<?php arras_below_post() ?>
<?php if ( get_post_custom_values('comments') ) comments_template('', true) ?>
<?php arras_below_comments() ?>
<?php arras_below_content() ?>
</div><!-- #content -->
<?php get_footer(); ?>