Не выводятся посты через have_posts(), через get_post все отлично выводится.
<?php if (have_posts()) { while (have_posts()) { the_post(); ?>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<div class="catalogSec-Item">
<div class="catalogSec-img">
<?php the_post_thumbnail( 'thambnail' ) ?>
</div>
<div class="catalogSec-descript">
<p class="catalogSec-descript__name"><?php the_title(); ?></p>
<p class="catalogSec-descript__functional"><?php the_category( $separator = '/', ''); ?></p>
<p class="catalogSec-descript__price">2 990 Руб.</p>
</div>
<div class="catalogSec-descript-btn">
<a href="<?php the_permalink(); ?>" class="btn-blue catalogSec-descript__btn">Купить</a>
</div>
</div>
</div>
<?php } // конец while
} // конец if ?>