Category not showing posts
-
hi there! i created a new category ( category-2 ) and i used the same code as the template do get the posts but it don´t show anything 🙁
<?php get_header(); ?> <div id="leftcol"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink(); ?>" title="Permalink to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <span class="post-meta"><?php the_time('F j, Y'); ?> - Posted by <?php the_author_link(); ?> - <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?></span> <div class="divider"></div> <?php the_content(' '); ?> <span class="post-footer"><a href="<?php the_permalink(); ?>" title="Continue Reading <?php the_title(); ?>">Continue Reading...</a></span> </div><br /><br /> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <div id="rightcol"> <?php get_sidebar(); ?> </div> <?php get_footer(); ?>any one know what it could be?
Thanks in advance!
The topic ‘Category not showing posts’ is closed to new replies.