sidebar is below posts after adding additional category
-
Reference https://www.couofm.com
For some reason, I added a new category, and tagged a few posts as that category. Then my normal META, BLOGROLL, LINKS, etc “sidebar” are all located below my posts, so they dont show up on the right side next to the posts… here is my sidebar.php from my admin console:
<div id=”sidebar”>
- <h2>Archives</h2>
-
<?php wp_get_archives(‘type=monthly’); ?>
- <h2>Categories</h2>
-
<?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 ec3_get_calendar(); ?>
- <h2><?php _e(‘Events’); ?></h2>
<?php ec3_get_events(5); ?> - <h2>Podcasts of Latest Pursuingchrist.info Resources</h2>
- /feed/rss2″>
- <?php podPress_iTunesLink(); ?>
- <h2>Verse</h2>
<?php wp_votd(); ?> - <h2>Weather</h2>
<?php if (function_exists(‘WeatherIcon’)) : ?> - Minneapolis, MN
- <?php WeatherIcon(‘station=KMSP’); ?>
- <h2>Meta</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- Site hosted by Teknicks Computer Consulting
- <?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
- <h2>Author</h2>
A little something about you, the author. Nothing lengthy, just an overview. -
<?php /* If this is a 404 page */ if (is_404()) { ?>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
You are currently browsing the archives for the <?php single_cat_title(”); ?> category.<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for the day <?php the_time(‘l, F jS, Y’); ?>.<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for <?php the_time(‘F, Y’); ?>.<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives
for the year <?php the_time(‘Y’); ?>.<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
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.<?php /* If this is a monthly archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
You are currently browsing the /”><?php echo bloginfo(‘name’); ?> weblog archives.<?php } ?>
<!– Author information is disabled per default. Uncomment and fill in your details if you want to use it.
–>
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>
<?php endif; ?>
<?php } ?>
</div>
Please help!!!
- The topic ‘sidebar is below posts after adding additional category’ is closed to new replies.