How do I create a list of one category’s posts in a sidebar?
-
I’m trying to set up a sidebar with a list of posts from a single category. This is outside The Loop. But I can’t seem to get much info from the Codex on this subject.
It would seem that some form of get_posts should do it, but I haven’t been able to make it work (there are no helpful examples on the get_posts Codex page…)
So, what I’d like to do is put up a simple list, with
</li> <li>
separators, for a certain number of posts (say, 7), in a certain category (say, 57). Can anyone help me out? Do I have to set it up inside a Query or in some sort of second Loop?All I know right now is that this doesn’t seem to do anything:
<ul class="onecatposts"> <?php get_posts('&category_in=57'); > </ul>
Thanks in advance for any advice.
- The topic ‘How do I create a list of one category’s posts in a sidebar?’ is closed to new replies.