The uncatagorized category would likely be your default category so unless you have created new categories and select one of these at post-time – all posts would be filed under this default category.
I have created five other catagories.
So when I make a post in EVENTS, the post is logged in the events catagory and also for some reason in uncatagorized 0 even though I have only selected the events catagory in the check boxes to the right.
For fun, I have tried renaming the uncatagorized catagory to other names, but that does not solve the problem.
Thanks!
You have to select Events and deselect Uncat in the same time.
I do deselect uncatagorized while selecting the catagory I want and yet the post still shows up in uncatagorized.
Then there is something wrong with your setup, though I have no idea what it could be.
Thanks for some of the suggestions Moshu. I have searched through the Forum and there seems to be some other folks who had the same problem, but there does not seem to be a resolution.
I did make some changes to the “main index template” and just thought that those changes may have caused this problem.
Can someone with more WP knowledge than I take a look at my code below?
Thanks!
<?php
include_once(‘gravatar.php’);
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h3 class=”storytitle” id=”post-<?php the_ID(); ?> rel=”bookmark”><?php the_title(); ?></h3>
<div class=”meta”> </div>
<div class=”storycontent”>
<?php the_content(__(‘(Read on …)’)); ?>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
<?php get_footer(); ?>
This one shouldn’t even display in which category the post is.