So i used this code to show posts from two specific categories:
<?php query_posts(array('category__and'=>array(3,46))); ?>
<?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 the_excerpt('Read the rest of this entry »') ?><a href="<?php the_permalink(); ?>" title="Permanent link to <?php the_title(); ?>">Click Here To Continue</a> <br> <br>
<?php endwhile;?>
So this outputs all the posts that match only categories 3 and 46. But the problem is it shows ALL posts that match that.
Question 1: how do i show only maybe the 3 most recent post? i know it was showposts=3 but b/c of the array coding, i don't know where to put it.
Thank you,