Putting posts in the sidebar
-
I have a 4 column theme. I’m trying to display posts of a particular category in one of my sidebars on the right side. I have searched this forum trying to find someone who asked this question previously. I found on the sort of addressed my problem and put this code in my sidebar:
<?php query_posts(‘cat=5&showposts=3’); ?>
<?php if (have_posts() : while (the_post()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; else : endif; ?>But nothing is showing up! Why?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Putting posts in the sidebar’ is closed to new replies.