I want to make pagination when selecting a category:
cx80363-wordpress.tw1.ru/category/toys/ Sample code running on category.php :
<?php query_posts(array( 'cat' => 1, 'paged' => 1, 'post_per_page' => '1' )); if ( have_posts() ) while (have_posts()) : the_post(); ?> /* Посты */ <?php endwhile; ?> <?php the_posts_pagination(); ?> The page navigation itself displays, but nothing happens when you try to navigate.
What am I doing wrong?
WP 4.9.2
The template is self-written.