На сайте 12 постов, а в настройках WordPress во вкладке "Чтение" я указал, чтобы выводилось 5 записей на одной странице, но выводится все равно 12 постов, вот код:
<?php get_header(); ?>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( $wp_query->current_post == 0 ) :
get_template_part( 'hero' );
endif;
endwhile;
endif;
?>
<div id="main">
<div id="articles">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( $wp_query->current_post > 0 ) :
get_template_part( 'article' );
endif;
endwhile;
endif;
?>
</div>
<?php get_sidebar(); ?>
<?php the_posts_pagination( array(
'end_size' => 2,
'mid_size' => 2,
) ); ?>
</div>
<?php get_footer(); ?>