<?php
if (have_posts()) :
query_posts('cat=1');
while (have_posts()) : the_post(); ?>
<article class="post">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="post__info">
<span class="post__info--date"><?php echo get_the_date(); ?></span>
<span class="post__info--comments"><a href="<?php the_permalink(); ?>#comments">комментировать</a></span>
</div>
<?php the_content(); ?>
<p class="post__hashtag"><?php the_tags($before=""); ?></p>
</article>
<?php endwhile;
else :
echo '<p>Записей нет</p>';
endif;
?>
<?php global $wp_query;
$wp_query = new WP_Query(array(
'posts_per_page' => '4',
'post_type' => 'post',
'category__in' => '1', //дочерние будут проигнорированы
'paged' => get_query_var('paged') ?: 1 // страница пагинации
));
while( have_posts() ) { the_post(); ?>
<!-- content здесь -->
<?php } ?>
<!-- пагинация здесь -->
<?php wp_reset_query(); ?>