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?