<?php $query = new WP_Query(array(
'category__not_in' => array(5, 6),
)); ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<div class="col-md-4">
<a href="<?php the_permalink(); ?>" class="ItemDiv">
<?php the_post_thumbnail('', array('class' => 'resp-img')); ?>
<table>
<tr>
<td>
<span
class="font-16 name bold block uppercase"><?php the_title() ?></span>
<span class="block uppercase"><?php the_excerpt() ?></span>
</td>
</tr>
</table>
</a>
</div>
<?php endwhile; ?>