<?php
global $post;
$postslist = get_posts( array( 'posts_per_page' => 2, 'category'=>'news' ) );
foreach ( $postslist as $post ){
setup_postdata($post);
?>
<div>
<?php the_date(); ?> - выводит дату новости
<?php the_title(); ?> - выводит заголовок новости
<?php the_excerpt(); ?> - выводит краткое описание
<?php the_post_thumbnail(); ?> - выводит превью новости - картинку
</div>
<?php
}
wp_reset_postdata(); ?>