<?php
$catquery = new WP_Query( 'cat=4&posts_per_page=10' );// cat = category
//4=category id
while($catquery->have_posts()) : $catquery->the_post();
the_title();
//content here
?>
<?php endwhile; ?>
$catquery = new WP_Query( 'cat=4&posts_per_page=10' );// cat = category
//4=category id
while($catquery->have_posts()) : $catquery->the_post();
the_title();
//content here
?>
<?php endwhile; ?>