• So I have my categories set up like this:

    Recipes:
    Cupcakes
    Bars
    Marinades

    When I click on the Cupcake category, is it possible to for the sidebar of that page to show a list of all posts categorized under ‘cupcakes’?

    I found several plug-ins that would give me various category lists, but the lists show up on ALL pages. I would like to only display a list of cupcakes on the cupcake page, a list of bars on the bars page, etc.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Using query_post() ?

    query_posts(‘category_name=Cupcake’);

    Then just the loop.

    When you get this working, can you post exact instructions? I need to do the same thing, but do not grasp the answer given.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show posts pertaining to a single category – on only that category page?’ is closed to new replies.