there’s nothing in my sidebar.php file. i deleted it all. the original theme had a second sidebar on the right side of the page that this file refers to. i didnt want that sidebar, so i deleted the contents of the file.
here’s my single.php file:
<div id="outer_wrapper">
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<h2><?php the_title(); ?></h2>
<div class="contenttext">
<?php the_content('<p>Read more »</p>'); ?>
</div>
<?php link_pages('<p><strong>Pages:<strong> ', '</p>', 'number'); ?>
<p class="postinfo"><strong>Posted:</strong> <?php the_time('F jS, Y') ?> under <?php the_category(', ') ?>.<br />
<?php the_tags('Tags: ', ', ',''); ?><?php edit_post_link('[e]',' | ',''); ?></p>
<div class="navigation">
<p><span class="prevlink"><?php previous_post_link('« %link','Previous post',''); ?></span>
<span class="nextlink"><?php next_post_link('%link »','Next post',''); ?></span></p>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p>No matching entries found.</p>
<?php endif; ?>
</div>
</div>
<div id="footer">
<h5>The GCCC is a not-for-profit 501(c) (6) non-government membership organization. Member of CIANJ, Member ICC, affiliated
with<br /> NJAWBO Bergen Chapter, affiliated with Bergen Community College small business development center.</h5><br />
? 2009 Gold Coast Chamber of Commerce<br />
Designed by <a href="https://www.adfgadfgadfg.com" target="blank">adfgadfgadfg.com</a></div>
</div><!-- end outer_wrapper div-->