// WP_Query arguments
$args = array (
'nopaging' => false,
'order' => 'ASC',
'orderby' => 'none',
'offset' => 1
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
the_title(); // выведем заголовок поста
}
} else {
// no posts found
}
the_posts_pagination();
// Restore original Post Data
wp_reset_postdata();
<?php
get_header(); // подключаем header.php ?>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-lg-9 blog-main blog-main">
<div class="title_cat">Рубрика <h1><?php wp_title('');?></h1></div>
<?php
$args = array( 'posts_per_page' => 3 , 'offset'=>1 );
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
$query->the_post();
the_title(); // выведем заголовок поста
}
wp_reset_postdata();
?>
<div class="clearfix"></div>
<div class="pagination"><?php pagination(); ?></div>
</div>
<div class="col-xs-12 col-sm-4 col-lg-3 blog-sidebar">
<?php get_sidebar();?>
</div>
</div></div>
<?php get_footer();?>