Сейчас читают2:
    
    
  
';
global $post; // не обязательно
// 5 записей из рубрики 9
$myposts = get_posts( array(
	'posts_per_page' => 5
) );
foreach( $myposts as $post ){
	setup_postdata( $post );
	echo '- ';
	the_title();
		echo '
 ';
	// стандартный вывод записей
}
wp_reset_postdata(); // сбрасываем переменную $post
echo '
';
/* Start the Loop */
while ( have_posts() ) :
	the_post();
	get_template_part( 'template-parts/content/content-page' );
	// If comments are open or there is at least one comment, load up the comment template.
	if ( comments_open() || get_comments_number() ) {
		comments_template();
	}
endwhile; // End of the loop.
get_footer();