tags:

views:

93

answers:

1

I am trying to use 'get_posts' to pick up posts that are in two categories. Currently I am using this: $myposts = get_posts('numberposts=1&category=4&category=7');

This picks up posts that are either in category 4 or 7. The posts I want to pick up must be in both categories at once. Any suggestions?

A: 

Use this

$myposts = get_posts('numberposts=1&category=4,7');
Sudar