$myposts = get_posts( array( 'category__and' => array( 2, 6 ) ) );
if($myposts) {
$post = $myposts[0];
setup_postdata($post);
the_title();
the_content();
wp_reset_query();
}
$myposts = get_posts( array( 'category__and' => array( 2, 6 ), 'posts_per_page' => '10' ) );
if($myposts) {
foreach ($myposts as $post) {
setup_postdata($post);
the_title();
the_content();
}
wp_reset_query();
}