Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Plugins
    In reply to: List Posts by Category

    I had trouble finding the answer to this one but finally did. Here is the code to list posts by category in your sidebar:

    ‘<!–Show posts by category–>
    <?php if (in_category(‘4’)) : ?>
    <?php $my_query = new WP_Query(‘cat=4&showposts=15’); ?>
    <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>

    I’ve been searching for this too. There are several plugins that will post all posts by all categories, and several variations.. But I cannot find an answer to this seemingly simple issue.

    Anyone know how to do this?

Viewing 2 replies - 1 through 2 (of 2 total)