<?php
$query = new WP_Query('cat=9');
if( $query->have_posts() ){
while( $query->have_posts() ){ $query->the_post();
?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php
}
wp_reset_postdata();
}
else echo 'Записей нет.';
?>