WP Custom Posts Sidebar - For Cat Exclusion
Copy this code and paste it in your HTML
<?php
$recent = new WP_Query();
$recent->query(array('category__and' => array(1), 'showposts'=>10));
while($recent -> have_posts()) : $recent -> the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
Report this snippet