i am scratching my head on this one...
but i am trying to show a posts (titles) only if it shows up in 2 specific categories. this is the code i used:
<?php query_posts('cat=8' && 'cat=53'); ?>
<?php while (have_posts()) : the_post(); ?>
<span class="listings"><a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?>"><?php the_title(); ?></a></span>
<?php endwhile;?>
when i do this, this shows ALL my posts i've done.
Thanks!