Добрый день , подскажите, пожалуйста.
У меня на главной странице вывод двух типов записей (условно: новости и статьи). И мне нужно сделать вывод пагинации, если постов той или иной рубрики больше 7.
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'posts_per_page' => 3, // количество постов на странице
'post_type' => 'articles', // тип постов
'paged' => $paged // текущая страница
);
query_posts($args);
$wp_query->is_archive = true;
$wp_query->is_home = true; ?>
<div class="col lg-6 md-6 sm-6 xs-12">
<h2 class="default_in_page we_b w_100 p_24">Статьи </h2>
<div class="scroll-block">
<?php $the_query = new WP_Query( array( 'category_name' => 'articles' ) ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<div class="flexbox">
<div class="col lg-4 md-5 sm-5 xs-12">
<a href="<?php the_permalink() ?>"><?php echo get_the_post_thumbnail() ?></a>
</div>
<div class="col lg-8 md-7 sm-7 xs-12">
<h3 class="default_in_page we_b w_100"><a href="<?php the_permalink(); ?>" title="Read more"><?php the_title(); ?></a></h3>
<div class="content">
<p> <?php the_excerpt(); global $more; ?></p>
<a href="<?php the_permalink() ?>" ><span class="permalink">Подробнее</span></a> </div>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<?php get_the_posts_pagination(); ?>