Answer the question
In order to leave comments, you need to log in
Ajax pagination (WordPress) plugin not working?
How to make pagination without reloading the page?
Used plugin: https://ru.wordpress.org/plugins/wp-ajax-pagination/
and native WordPress pagination the_posts_pagination();
But ajax-pagination still doesn't work for me =(
Plugin settings screen:
category.php file code
<?php get_header(); ?>
<main class="Main_ContentKg">
<section>
<div class="Block-1">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post();?>
<div class="child-block-1"> // ****** блок записи вставил в окно настроек плагина ******
<a class ="child_Link_1" href=<?php the_permalink(); ?>> </a>
<img class="child-img-1" src=<?php the_post_thumbnail('post-page'); ?>
<figcaption class ="child-text">
<div class="child-text-center">
<?php the_title();?>
</div>
</figcaption>
</div>
<?php endwhile; ?>
</div>
<?php
$pagin_args = array(
'show_all' => false, // показаны все страницы участвующие в пагинации
'end_size' => 2, // количество страниц на концах
'mid_size' => 1, // количество страниц вокруг текущей
'prev_next' => false, // выводить ли боковые ссылки "предыдущая/следующая страница".
'prev_text' => __('« Вперед'),
'next_text' => __('Назад »'),
'add_args' => false, // Массив аргументов (переменных запроса), которые нужно добавить к ссылкам.
'add_fragment' => '', // Текст который добавиться ко всем ссылкам.
'screen_reader_text' => __( 'Posts navigation' ),
);
?>
<?php the_posts_pagination($pagin_args); ?> // Родная пагинация WordPress
</section>
</main>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question