Всем доброго дня! Помогите, пожалуйста разобраться, где ошибка. Суть в том, что пагинация выводится, но не работает (отображается все время первая страница, остальные не выводятся). Что только не перепробовала, и через wp_query и плагины, ничего не работает. Буду очень признательна!
<?php
if ( have_posts() ) :
query_posts( 'cat=2' );
while (have_posts()) : the_post();
?>
<?php setPostViews(get_the_ID()); ?>
<div class="page-post-h2">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div>
<div class="public">
<div class="center">
<div class="picture-min">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php
the_post_thumbnail( array(300, 150) ); ?></a>
</div>
<div class="right-text">
<?php echo wp_trim_words( get_the_content(), 95, '<a href="'. get_permalink() .'"> ...Читать
далее</a>' ); ?>
</div>
</div>
<div class="date date-buttom">
<div class="right"><i class="fas fa-eye"></i><?php echo getPostViews(get_the_ID()); ?></div>
<div class="left"><small><?php the_time('j F Y     H:i') ?> </small></div>
</div>
</div>
<?php endwhile; ?>
<?php echo get_the_posts_pagination(); ?>
<?php wp_reset_query(); ?>
<?php endif; ?>