Приветствую всех. Есть небольшая проблема в коде (В шаблоне archive.php) есть код для вывода категорий. Но при нажатии на кнопку пагинации, страница переключается, а содержимое остается прежним. Подскажите, где в коде ошибка? На сайт поставил плагин simple pagination, но ошибка не исчезла.
<?php
*/
get_header();
?>
<?php if ( have_posts() ) : ?>
<div class="b-news section">
<div class="container">
<div class="section__header">
<h1 class="title-border text-center">SQL Server Blog</h1>
</div>
<div class="b-news__list">
<div class="row-flex row-flex_start row-flex_stretch">
<?php
$queried_object = get_queried_object();
$the_query = new WP_Query(
array(
'post_type' => 'post',
'post_status' => array( 'publish' ),
'orderby'=> 'date',
'order'=> 'DESC',
'posts_per_page' => 16,
'post__not_in' => array($queried_object->ID)
)
);
$n = 0;
while ($the_query->have_posts()) : $the_query->the_post();
?>
<div class="col col-md-3 col-xs-6">
<div class="b-news__list-item">
<div class="top">
<div class="b-news__list-item-img">
<img src="<?php echo get_the_post_thumbnail_url('', 'video-preview-600-400'); ?>" alt="">
</div>
<div class="b-news__list-item-header">
<h4 class="title-border"><?php the_title(); ?></h4>
</div>
<div class="b-news__list-item-content">
<?php echo get_excerpt(200); ?>
</div>
</div>
<div class="bottom">
<div class="b-news__list-item-footer">
<div> </div>
Read more..
</div>
</div>
</div>
</div>
<?php
$n = $n+1;
endwhile;
wp_reset_postdata();
?>
</div>
</div>
<div> </div>
<?php wp_simple_pagination(); ?>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>
<?php
*/
get_header();
?>
<?php if ( have_posts() ) : ?>
<div class="b-news section">
<div class="container">
<div class="section__header">
<h1 class="title-border text-center">SQL Server Blog</h1>
</div>
<div class="b-news__list">
<div class="row-flex row-flex_start row-flex_stretch">
<?php
$queried_object = get_queried_object();
$the_query = new WP_Query(
array(
'post_type' => 'post',
'post_status' => array( 'publish' ),
'orderby'=> 'date',
'order'=> 'DESC',
'posts_per_page' => 16,
'post__not_in' => array($queried_object->ID)
)
);
$n = 0;
while ($the_query->have_posts()) : $the_query->the_post();
?>
<div class="col col-md-3 col-xs-6">
<div class="b-news__list-item">
<div class="top">
<div class="b-news__list-item-img">
<img src="<?php echo get_the_post_thumbnail_url('', 'video-preview-600-400'); ?>" alt="">
</div>
<div class="b-news__list-item-header">
<h4 class="title-border"><?php the_title(); ?></h4>
</div>
<div class="b-news__list-item-content">
<?php echo get_excerpt(200); ?>
</div>
</div>
<div class="bottom">
<div class="b-news__list-item-footer">
<div> </div>
Read more..
</div>
</div>
</div>
</div>
<?php
$n = $n+1;
endwhile;
wp_reset_postdata();
?>
</div>
</div>
<div> </div>
<?php wp_simple_pagination(); ?>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>
Изменено:
greff - 15 Июня 2020 18:32