Как узнать сколько постов выводится и в зависимости от количества, менять "col-md-* ?
Максимум 3 поста, может быть 2 или 1
<div class="container">
<div class="row">
<?php $acsessuar = new WP_Query( array( 'post_type' => 'sheensay_product', 'posts_per_page' => 3 ) ); ?>
<?php while ( $acsessuar->have_posts() ) : $acsessuar->the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="col-md-4 section-practicals_post">
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : ?>
<div class="section-practicals_img">
<?php the_post_thumbnail(array( 234,124)); ?>
</div>
<?php endif; ?>
<h3 class="section-practicals_title"><?php the_title(); ?></h3>
<div class="section-practicals_text">
<?php the_content(); ?>
</div>
</div><!-- post -->
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</div>
</div>