У меня такой код в index.php:
<?php get_header(); ?>
<?php
query_posts('posts_per_page=0');
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
query_posts('posts_per_page=0');
if ( have_posts() ) :
while ( have_posts() ) : the_post();
if ( $wp_query->current_post > 0 ) :
get_template_part( 'article' );
endif;
endwhile;
endif;
?>
<?php the_posts_pagination( array(
'end_size' => 2,
'mid_size' => 2,
) ); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
Постраничная навигация выводится, но при переходе на следующую страницу и вообще на любую выводит ошибку "Страница не найдена". Не могу понять в чем проблема?