Crazy Jane,
I appreciate your help.
I have looked at my sidebar.php document and find no calling for the left sidebar which I want to eliminate.
Any thoughts?
Here is the code of my page:
<div id=”sidebar”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar() ) : else : ?>
-
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
-
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p>You are currently browsing the archives for the <?php single_cat_title(”); ?> category.</p>
<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
<p>You are currently browsing the “><?php echo bloginfo(‘name’); ?> weblog archives
for the day <?php the_time(‘l, F jS, Y’); ?>.</p>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p>You are currently browsing the “><?php echo bloginfo(‘name’); ?> weblog archives
for <?php the_time(‘F, Y’); ?>.</p>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p>You are currently browsing the “><?php echo bloginfo(‘name’); ?> weblog archives
for the year <?php the_time(‘Y’); ?>.</p>
<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
<p>You have searched the “><?php echo bloginfo(‘name’); ?> weblog archives
for ‘<?php echo wp_specialchars($s); ?>’. If you are unable to find anything in these search results, you can try one of these links.</p>
<?php if (function_exists(‘get_recent_comments’)) { ?>
- <h2><?php _e(‘Recent Comments:’); ?></h2>
<?php get_recent_comments(); ?>
<?php } ?>
<?php if (function_exists(‘get_recent_trackbacks’)) { ?>
- <h2><?php _e(‘Recent Trackbacks:’); ?></h2>
<?php get_recent_trackbacks(); ?>
<?php } ?>
<?php /* If this is a monthly archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<p>You are currently browsing the “><?php echo bloginfo(‘name’); ?> weblog archives.</p>
<?php } ?>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
<?php wp_get_archives(‘type=monthly’); ?>
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>
<?php } ?>
<?php endif; ?>
</div>